From 3a58125d14bb307f861b38c6c5b0a63babde7e08 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 19 Jun 2026 13:28:06 -0400 Subject: feat: all skills kind of implemented, random prototype content added --- internal/game/cmd_use.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'internal/game/cmd_use.go') diff --git a/internal/game/cmd_use.go b/internal/game/cmd_use.go index 7d40cc2..95a7b5b 100644 --- a/internal/game/cmd_use.go +++ b/internal/game/cmd_use.go @@ -25,6 +25,11 @@ func (g *Game) doUse(sess *net.Session, input string) { lower := strings.ToLower(input) + if lower == "bank" || lower == "bank booth" || strings.HasPrefix(lower, "bank ") { + g.doBank(sess) + return + } + sep := "" if strings.Contains(lower, " on ") { sep = " on " -- cgit v1.2.3