Fix sticky piston duplicate bug

This commit is contained in:
Jeija 2012-08-10 20:12:53 +02:00
parent 8fa6894953
commit 9d52049e83
1 changed files with 3 additions and 3 deletions

View File

@ -207,8 +207,8 @@ mesecon:register_on_signal_off(function(pos, node)
and checknode.name ~= "default:lava_flowing"
and not mesecon:is_mvps_stopper(checknode.name) then
minetest.env:set_node(pos, checknode)
mesecon:updatenode(pos)
--minetest.env:dig_node(pos)
minetest.env:remove_node(checkpos)
mesecon:updatenode(checkpos)
end
end
if node.name == "mesecons_pistons:piston_sticky" then
@ -230,4 +230,4 @@ function mesecon:piston_get_direction(node)
end
dofile(minetest.get_modpath("mesecons_pistons").."/pistons_down.lua")
dofile(minetest.get_modpath("mesecons_pistons").."/pistons_up.lua")
dofile(minetest.get_modpath("mesecons_pistons").."/pistons_up.lua")