Skip to content
Snippets Groups Projects
Commit b4e6ca63 authored by Perttu Ahola's avatar Perttu Ahola
Browse files

Comment out print("on_generated: ...") in Lua

parent 1d36e683
No related branches found
No related tags found
No related merge requests found
......@@ -1331,7 +1331,7 @@ minetest.register_on_respawnplayer(function(player)
end)
minetest.register_on_generated(function(minp, maxp)
print("on_generated: minp="..dump(minp).." maxp="..dump(maxp))
--print("on_generated: minp="..dump(minp).." maxp="..dump(maxp))
--cp = {x=(minp.x+maxp.x)/2, y=(minp.y+maxp.y)/2, z=(minp.z+maxp.z)/2}
--minetest.env:add_node(cp, {name="sand"})
end)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment