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/world/world.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/world/world.go')
| -rw-r--r-- | internal/world/world.go | 2 |
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 "" |
