diff options
| author | historia <[not public]> | 2026-06-29 17:19:40 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-29 17:19:40 -0400 |
| commit | feb80b7dde200d4121cd9f9c583a08f9869c5588 (patch) | |
| tree | 3271cae1d74c8f3b84ef3ae84f8f62e563029dff /internal/game/cmd_close.go | |
| parent | c6cbf76b33ac20d071d25e74b70f6901476193a6 (diff) | |
| download | thehouseoficarus-feb80b7dde200d4121cd9f9c583a08f9869c5588.tar.gz | |
feat: incardinal directions (nw, ne, sw, se). probably janky in ways I haven't yet discovered.
Diffstat (limited to 'internal/game/cmd_close.go')
| -rw-r--r-- | internal/game/cmd_close.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/game/cmd_close.go b/internal/game/cmd_close.go index 8dab0d9..217ae9a 100644 --- a/internal/game/cmd_close.go +++ b/internal/game/cmd_close.go @@ -25,7 +25,7 @@ func (g *Game) executeClose(sess *net.Session, args []string, rawInput string) { dir := g.World.ResolveExit(args[0]) if dir == "" { - sess.WriteLine("Invalid direction. Use north/south/east/west/up/down.") + sess.WriteLine("Invalid direction. Use n/s/e/w/ne/nw/se/sw/u/d.") return } |
