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())