Disable debugging code

This commit is contained in:
KaadmY 2017-05-17 13:55:32 -07:00
parent 94b1ba03a2
commit 7ab7f642f1
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,9 @@
-- Mapgen -- Mapgen
-- --
-- Uncomment this to cut a big portion of ground out for visualizing ore spawning
--[[
local function on_generated(minp, maxp, blockseed) local function on_generated(minp, maxp, blockseed)
for x = minp.x, maxp.x do for x = minp.x, maxp.x do
if x > 0 then if x > 0 then
@ -20,6 +23,7 @@ local function on_generated(minp, maxp, blockseed)
end end
minetest.register_on_generated(on_generated) minetest.register_on_generated(on_generated)
--]]
-- Aliases for map generator outputs -- Aliases for map generator outputs
-- v7 still needs them.. sigh.. -- v7 still needs them.. sigh..