From 7b009e904524f30cbff6346730e8d8fe4b046a6b Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Sat, 4 Jul 2026 19:32:05 -0400 Subject: feat: add casino chips, change drops to chips --- internal/game/render_prompt.go | 1 + 1 file changed, 1 insertion(+) (limited to 'internal/game/render_prompt.go') diff --git a/internal/game/render_prompt.go b/internal/game/render_prompt.go index 68f1a9a..ad1ba9c 100644 --- a/internal/game/render_prompt.go +++ b/internal/game/render_prompt.go @@ -37,6 +37,7 @@ func (g *Game) expandPromptVars(sess *net.Session, text string) string { text = strings.ReplaceAll(text, "%b", fmt.Sprintf("%.1f", p.Battery)) text = strings.ReplaceAll(text, "%B", fmt.Sprintf("%.0f", p.MaxBattery())) text = strings.ReplaceAll(text, "%c", fmt.Sprint(p.Credits)) + text = strings.ReplaceAll(text, "%k", fmt.Sprint(countChips(p))) text = strings.ReplaceAll(text, "%i", fmt.Sprint(p.FreeSlots())) text = strings.ReplaceAll(text, "%s", attackStyleShort(p.AttackStyle)) text = strings.ReplaceAll(text, "%S", attackStyleLong(p.AttackStyle)) -- cgit v1.2.3