aboutsummaryrefslogtreecommitdiff
path: root/internal/game/cmd_use.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-19 13:28:06 -0400
committerhistoria <[not public]>2026-06-19 13:28:06 -0400
commit3a58125d14bb307f861b38c6c5b0a63babde7e08 (patch)
treebd89e866447d55e6dffd447d8ef5fabf9b8fbe9d /internal/game/cmd_use.go
parent575a71dcfed3b9fa44af244836f638a23df05a9a (diff)
downloadthehouseoficarus-3a58125d14bb307f861b38c6c5b0a63babde7e08.tar.gz
feat: all skills kind of implemented, random prototype content added
Diffstat (limited to 'internal/game/cmd_use.go')
-rw-r--r--internal/game/cmd_use.go5
1 files changed, 5 insertions, 0 deletions
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 "