aboutsummaryrefslogtreecommitdiff
path: root/internal/world/world.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-29 17:19:40 -0400
committerhistoria <[not public]>2026-06-29 17:19:40 -0400
commitfeb80b7dde200d4121cd9f9c583a08f9869c5588 (patch)
tree3271cae1d74c8f3b84ef3ae84f8f62e563029dff /internal/world/world.go
parentc6cbf76b33ac20d071d25e74b70f6901476193a6 (diff)
downloadthehouseoficarus-feb80b7dde200d4121cd9f9c583a08f9869c5588.tar.gz
feat: incardinal directions (nw, ne, sw, se). probably janky in ways I haven't yet discovered.
Diffstat (limited to 'internal/world/world.go')
-rw-r--r--internal/world/world.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/world/world.go b/internal/world/world.go
index 0c992ad..3dfa99b 100644
--- a/internal/world/world.go
+++ b/internal/world/world.go
@@ -68,7 +68,7 @@ func (w *World) ResolveExit(input string) ExitDir {
}
canon := ExitDir(strings.ToLower(input))
switch canon {
- case North, South, East, West, Up, Down:
+ case North, South, East, West, Northeast, Northwest, Southeast, Southwest, Up, Down:
return canon
}
return ""