diff --git a/maze.lua b/maze.lua index b647c58..99900b4 100644 --- a/maze.lua +++ b/maze.lua @@ -41,8 +41,8 @@ function M.generate_maze(seed, width, height, path_length, path_width) math.randomseed(seed) -- seed the random number generator with the system clock - width = width - 1 - height = height - 1 + -- width = width - 1 + -- height = height - 1 local world = {} for y = 0, height, 1 do