From 8f12d18b1dc785cd3a3bbbd390554e295aa00738 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Sun, 28 Apr 2013 17:45:25 -0400 Subject: fix a bug where spigot pouring would replace the node under it with water. Also clean up spigot logic slightly. --- flowing_logic.lua | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'flowing_logic.lua') diff --git a/flowing_logic.lua b/flowing_logic.lua index ea5b09e..e943488 100644 --- a/flowing_logic.lua +++ b/flowing_logic.lua @@ -67,7 +67,9 @@ end local update_outlet = function(pos) local top = minetest.env:get_node({x=pos.x,y=pos.y+1,z=pos.z}).name if string.find(top,'_loaded') then - minetest.env:add_node({x=pos.x,y=pos.y-1,z=pos.z},{name='default:water_source'}) + if minetest.env:get_node({x=pos.x,y=pos.y-1,z=pos.z}).name == 'air' then + minetest.env:add_node({x=pos.x,y=pos.y-1,z=pos.z},{name='default:water_source'}) + end elseif minetest.env:get_node({x=pos.x,y=pos.y-1,z=pos.z}).name == 'default:water_source' then minetest.env:remove_node({x=pos.x,y=pos.y-1,z=pos.z}) end @@ -81,10 +83,14 @@ local spigot_check = function(pos,node) dbg('found '..top) if string.find(top,'_loaded') then minetest.env:add_node({x=pos.x,y=pos.y,z=pos.z},{name='pipeworks:spigot_pouring', param2 = fdir}) - minetest.env:add_node({x=pos.x,y=pos.y-1,z=pos.z},{name='default:water_source'}) - elseif minetest.env:get_node({x=pos.x,y=pos.y-1,z=pos.z}).name == 'default:water_source' then + if minetest.env:get_node({x=pos.x,y=pos.y-1,z=pos.z}).name == 'air' then + minetest.env:add_node({x=pos.x,y=pos.y-1,z=pos.z},{name='default:water_source'}) + end + else minetest.env:add_node({x=pos.x,y=pos.y,z=pos.z},{name='pipeworks:spigot', param2 = fdir}) - minetest.env:remove_node({x=pos.x,y=pos.y-1,z=pos.z}) + if minetest.env:get_node({x=pos.x,y=pos.y-1,z=pos.z}).name == 'default:water_source' then + minetest.env:remove_node({x=pos.x,y=pos.y-1,z=pos.z}) + end end end -- cgit v1.2.3