Remove legacy nodeupdate 4 core.check_for_falling

This commit is contained in:
Wuzzy 2017-01-26 19:14:07 +01:00
parent 0bc7f6e912
commit 1e540a0746
6 changed files with 10 additions and 10 deletions

View file

@ -856,7 +856,7 @@ minetest.register_abm({
end
-- Remove node
minetest.remove_node(p0)
nodeupdate(p0)
core.check_for_falling(p0)
end
end
})

View file

@ -1112,7 +1112,7 @@ minetest.register_node("default:vine", {
local node = minetest.get_node(pos2)
if node.name == "default:vine" and check_attached_node(pos2, node) == false then
drop_attached_node(pos2)
nodeupdate(pos2)
core.check_for_falling(pos2)
ptr = ptr + 1
else
next_find = false