remove water node at spigot only at the

pouring-->off transition, not repeatedly.
This commit is contained in:
Vanessa Ezekowitz 2013-05-10 16:17:47 -04:00
parent b0d92dd358
commit 54a78297bb
1 changed files with 6 additions and 4 deletions

View File

@ -88,11 +88,13 @@ local spigot_check = function(pos,node)
local name = minetest.env:get_node({x=pos.x,y=pos.y-1,z=pos.z}).name
if string.find(top,'_loaded') and (name == 'air' or name == "default:water_source" or name == "default:water_flowing") then
minetest.env:add_node({x=pos.x,y=pos.y-1,z=pos.z},{name='default:water_source'})
minetest.env:add_node({x=pos.x,y=pos.y,z=pos.z},{name='pipeworks:spigot_pouring', param2 = fdir})
minetest.env:add_node(pos,{name='pipeworks:spigot_pouring', param2 = fdir})
else
minetest.env:add_node({x=pos.x,y=pos.y,z=pos.z},{name='pipeworks:spigot', param2 = fdir})
if name == 'air' or name == "default:water_source" or name == "default:water_flowing" then
minetest.env:remove_node({x=pos.x,y=pos.y-1,z=pos.z})
if minetest.env:get_node(pos).name == 'pipeworks:spigot_pouring' then
minetest.env:add_node({x=pos.x,y=pos.y,z=pos.z},{name='pipeworks:spigot', param2 = fdir})
if name == 'air' or name == "default:water_source" or name == "default:water_flowing" then
minetest.env:remove_node({x=pos.x,y=pos.y-1,z=pos.z})
end
end
end
end