From 63e8327125ddb189f745f22c3cfec3edab46945d Mon Sep 17 00:00:00 2001 From: Branden J Brown Date: Sun, 15 Feb 2026 10:46:08 -0500 Subject: [PATCH] horsebot: format duration scaling --- cmd/horsebot/skill.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmd/horsebot/skill.go b/cmd/horsebot/skill.go index 3e50425..e592ed4 100644 --- a/cmd/horsebot/skill.go +++ b/cmd/horsebot/skill.go @@ -76,8 +76,10 @@ func RenderSkill(id horse.SkillID, all map[horse.SkillID]horse.Skill, groups map t = "Instantaneous " case act.Duration >= 500e4: t = "Permanent " - default: + case act.DurScale == horse.DurationDirect: t = "For " + act.Duration.String() + "s, " + default: + t = "For " + act.Duration.String() + "s " + act.DurScale.String() + ", " } for _, a := range act.Abilities { abils = append(abils, a.String())