Remove useless, empty callbacks

This commit is contained in:
PilzAdam 2014-12-07 14:58:18 +01:00 committed by Novatux
parent 64bf6c1b89
commit 2c0f716a13
1 changed files with 0 additions and 25 deletions

View File

@ -102,31 +102,6 @@ function default.register_falling_node(nodename, texture)
end
end
--
-- Global callbacks
--
-- Global environment step function
function on_step(dtime)
-- print("on_step")
end
minetest.register_globalstep(on_step)
function on_placenode(p, node)
--print("on_placenode")
end
minetest.register_on_placenode(on_placenode)
function on_dignode(p, node)
--print("on_dignode")
end
minetest.register_on_dignode(on_dignode)
function on_punchnode(p, node)
end
minetest.register_on_punchnode(on_punchnode)
--
-- Lavacooling
--