a game about throwing hammers made for the github game off
fix keyboard slam
| -rw-r--r-- | classes/Maze.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Maze.gd b/classes/Maze.gd index a349eea..8e57fda 100644 --- a/classes/Maze.gd +++ b/classes/Maze.gd @@ -21,7 +21,7 @@ const S := 4 ## The west constant. const W := 8 -## The N E S W mappings to UP RIGHT DOWN LEFTtr`1` +## The N E S W mappings to UP RIGHT DOWN LEFT const cell_walls := {Vector2i.UP: N, Vector2i.RIGHT: E, Vector2i.DOWN: S, Vector2i.LEFT: W} const _dirs := [Vector2i.UP, Vector2i.RIGHT, Vector2i.DOWN, Vector2i.LEFT] |