From 121b06eb9a41e0e5e88ddaaf0ab5442127620a57 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sun, 3 May 2020 17:48:41 +0100 Subject: [PATCH] Add commented out debug statement --- worldeditadditions/maze3d.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/worldeditadditions/maze3d.lua b/worldeditadditions/maze3d.lua index a326a71..67aa7d1 100644 --- a/worldeditadditions/maze3d.lua +++ b/worldeditadditions/maze3d.lua @@ -119,6 +119,7 @@ local function generate_maze3d(seed, width, height, depth, path_length, path_wid for ix = cx,cx+(path_width-1) do for iy = cy,cy+path_length+(path_width-1) do world[iz][iy][ix] = " " + -- print("[tunnel/d] ("..ix..", "..iy..", "..iz..")") end end end