From 7a2eaeac820e06764d3a891b22e02fed7bb1c111 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sun, 3 May 2020 16:49:21 +0100 Subject: [PATCH] Comment out a workaround. If you experience issue, get in touch --- maze.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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