mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
maze2d: squash another undefined variable
This commit is contained in:
parent
e10dd1ff2e
commit
910d4b036f
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ local function printspace(space, w, h)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function generate_maze(seed, width, height, path_length, path_width)
|
local function generate_maze(seed, width, height, path_length, path_width)
|
||||||
start_time = worldeditadditions.get_ms_time()
|
local start_time = worldeditadditions.get_ms_time()
|
||||||
|
|
||||||
if not path_length then path_length = 2 end
|
if not path_length then path_length = 2 end
|
||||||
if not path_width then path_width = 1 end
|
if not path_width then path_width = 1 end
|
||||||
|
|
Loading…
Reference in a new issue