Fix whitespace, simplify node updating.

This commit is contained in:
Anthony Zhang 2012-10-01 22:18:45 -04:00
parent 208e95c2ff
commit cd8fd55fe3
2 changed files with 8 additions and 18 deletions

View File

@ -198,9 +198,6 @@ mesecon:register_on_signal_off(function(pos, node)
--retract piston
minetest.env:remove_node(pos) --remove pusher
if node.name ~= "mesecons_pistons:piston_down_sticky" then
nodeupdate(pos)
end
if node.name == "mesecons_pistons:piston_down_sticky" then --retract block
local checkpos = {x=pos.x + dir.x, y=pos.y + dir.y, z=pos.z + dir.z} --move to the node to be retracted
checknode = minetest.env:get_node(checkpos)
@ -214,7 +211,5 @@ mesecon:register_on_signal_off(function(pos, node)
mesecon:updatenode(pos)
end
end
if node.name == "mesecons_pistons:piston_down_sticky" then
nodeupdate(pos)
end
end)

View File

@ -186,9 +186,6 @@ mesecon:register_on_signal_off(function(pos, node)
--retract piston
minetest.env:remove_node(pos) --remove pusher
if node.name ~= "mesecons_pistons:piston_up_sticky" then
nodeupdate(pos)
end
if node.name == "mesecons_pistons:piston_up_sticky" then --retract block
local checkpos = {x=pos.x + dir.x, y=pos.y + dir.y, z=pos.z + dir.z} --move to the node to be retracted
checknode = minetest.env:get_node(checkpos)
@ -202,7 +199,5 @@ mesecon:register_on_signal_off(function(pos, node)
mesecon:updatenode(pos)
end
end
if node.name == "mesecons_pistons:piston_up_sticky" then
nodeupdate(pos)
end
end)