From feb80b7dde200d4121cd9f9c583a08f9869c5588 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Mon, 29 Jun 2026 17:19:40 -0400 Subject: feat: incardinal directions (nw, ne, sw, se). probably janky in ways I haven't yet discovered. --- internal/world/world.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/world/world.go') 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 "" -- cgit v1.2.3