aboutsummaryrefslogtreecommitdiff
path: root/internal/game/cmd_equipment.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/game/cmd_equipment.go')
-rw-r--r--internal/game/cmd_equipment.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/game/cmd_equipment.go b/internal/game/cmd_equipment.go
index cda39b1..4947d2b 100644
--- a/internal/game/cmd_equipment.go
+++ b/internal/game/cmd_equipment.go
@@ -23,6 +23,6 @@ func (g *Game) doEquipment(sess *net.Session) {
if err == nil {
name = def.Name
}
- sess.WriteLine(fmt.Sprintf(" %-12s %s", slot, name))
+ sess.WriteLine(fmt.Sprintf(" %-12s %s", slot, g.itemColorize(sess, def, name)))
}
}