aboutsummaryrefslogtreecommitdiff
path: root/internal/game/cmd_bank.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/game/cmd_bank.go')
-rw-r--r--internal/game/cmd_bank.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/game/cmd_bank.go b/internal/game/cmd_bank.go
index 5f9067d..d95f7c0 100644
--- a/internal/game/cmd_bank.go
+++ b/internal/game/cmd_bank.go
@@ -101,9 +101,10 @@ func (g *Game) showBankBrowse(sess *net.Session) {
})
for _, e := range entries {
+ def, _ := g.ItemStore.Load(e.id)
t.Rows = append(t.Rows, []string{
fmt.Sprintf("%d", e.slot+1),
- g.colorize(sess, "item", e.name),
+ g.itemColorize(sess, def, e.name),
fmt.Sprintf("%d", e.qty),
})
}