diff options
Diffstat (limited to 'internal/game/cmd_use.go')
| -rw-r--r-- | internal/game/cmd_use.go | 5 |
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 " |
