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

View File

@ -181,7 +181,7 @@ minetest.register_abm({
return
end
minetest.remove_node(p)
nodeupdate(p)
core.check_for_falling(p)
end
else
-- remove flame

View File

@ -34,7 +34,7 @@ tnt = {}
tnt.ignite = function(pos)
minetest.remove_node(pos)
spawn_tnt(pos, "mcl_tnt:tnt")
nodeupdate(pos)
core.check_for_falling(pos)
end
@ -111,7 +111,7 @@ function TNT:on_step(dtime)
if n.name ~= "air" and n.name ~= "default:obsidian" and n.name ~= "default:bedrock" and n.name ~= "protector:protect" then
activate_if_tnt(n.name, np, pos, 3)
minetest.remove_node(np)
nodeupdate(np)
core.check_for_falling(np)
if n.name ~= "mcl_tnt:tnt" and math.random() > 0.9 then
local drop = minetest.get_node_drops(n.name, "")
for _,item in ipairs(drop) do

View File

@ -20,7 +20,7 @@ end
function mesecon:mvps_process_stack(stack)
-- update mesecons for placed nodes ( has to be done after all nodes have been added )
for _, n in ipairs(stack) do
nodeupdate(n.pos)
core.check_for_falling(n.pos)
mesecon.on_placenode(n.pos, minetest.get_node(n.pos))
mesecon:update_autoconnect(n.pos)
end
@ -92,8 +92,8 @@ function mesecon:mvps_pull_single(pos, dir) -- pos: pos of mvps; direction: dire
minetest.add_node(pos, nn)
minetest.get_meta(pos):from_table(meta)
nodeupdate(np)
nodeupdate(pos)
core.check_for_falling(np)
core.check_for_falling(pos)
mesecon.on_dignode(np, nn)
mesecon:update_autoconnect(np)
end
@ -113,7 +113,7 @@ function mesecon:mvps_pull_all(pos, direction) -- pos: pos of mvps; direction: d
repeat
lnode2 = minetest.get_node(lpos2)
minetest.add_node(oldpos, {name=lnode2.name})
nodeupdate(oldpos)
core.check_for_falling(oldpos)
oldpos = {x=lpos2.x, y=lpos2.y, z=lpos2.z}
lpos2.x = lpos2.x-direction.x
lpos2.y = lpos2.y-direction.y

View File

@ -63,7 +63,7 @@ local piston_remove_pusher = function (pos, node)
if pushername == pistonspec.pusher then --make sure there actually is a pusher (for compatibility reasons mainly)
minetest.remove_node(pusherpos)
nodeupdate(pusherpos)
core.check_for_falling(pusherpos)
end
end