Fix indentation

This commit is contained in:
ANAND 2019-11-26 14:37:51 +05:30 committed by Auke Kok
parent efc6422e3c
commit 3d1a448f6d

View File

@ -26,9 +26,9 @@ minetest.register_on_mapgen_init(function(parms)
end)
minetest.register_on_generated(function(minp, maxp)
if minp.x <= 0 and minp.y <= -2 and minp.z <= 0 and maxp.x >= 0 and maxp.y >= -2 and maxp.z >= 0 then
minetest.set_node({x = 0, y = -2, z = 0}, {name = "nodes:stone"})
end
if minp.x <= 0 and minp.y <= -2 and minp.z <= 0 and maxp.x >= 0 and maxp.y >= -2 and maxp.z >= 0 then
minetest.set_node({x = 0, y = -2, z = 0}, {name = "nodes:stone"})
end
end)
-- squelch mapgen warnings