fix syntax error

This commit is contained in:
Starbeamrainbowlabs 2020-08-31 12:18:11 +01:00
parent 5467ad1664
commit 28df89ea7f
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 0 additions and 1 deletions

View File

@ -191,7 +191,6 @@ function M.generate_maze(seed, width, height, depth, path_length, path_width, pa
-- WARNING: os.clock() isn't accurate, because it gives the total **CPU time**, not **real time**!
local end_time = os.clock()
return world, (end_time - start_time) * 1000
return world
end
return M