From c36c1dc0c65e65b4d6ee53df6bbcc3a860eb6e4b Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Sun, 21 Jun 2026 01:05:35 -0400 Subject: Added %i, %n, %b to production skill messages to consistent color inputs, item names, and byproducts --- internal/game/cmd_bank.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'internal/game/cmd_bank.go') 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), }) } -- cgit v1.2.3