From d6ab0e93a64525ce34f89e26d5272efbac513c32 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Thu, 11 Jun 2026 20:41:06 -0400 Subject: feat: big map and options changes --- internal/game/game.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'internal/game/game.go') diff --git a/internal/game/game.go b/internal/game/game.go index 0675a13..8151877 100644 --- a/internal/game/game.go +++ b/internal/game/game.go @@ -194,10 +194,12 @@ func (g *Game) handleGameCommand(sess *net.Session, input string) { return case "description", "desc": g.doDescription(sess) - case "toggle": - g.doToggle(sess, strings.Join(args, " ")) + case "option", "options": + g.doOption(sess, strings.Join(args, " ")) case "exits": g.doExits(sess) + case "map": + g.doMap(sess) case "help": if len(args) == 0 { -- cgit v1.2.3