Comment out a workaround.

If you experience issue, get in touch
This commit is contained in:
Starbeamrainbowlabs 2020-05-03 16:49:21 +01:00
parent d077b17462
commit 7a2eaeac82
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 2 additions and 2 deletions

View File

@ -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