From 4e1ac10a5ae0d61af3c3d137c13cdd29b76e6754 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Mon, 14 Jan 2013 19:55:41 -0500 Subject: forgot to account for facedir in spigots when I added that water stream --- flowing_logic.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'flowing_logic.lua') diff --git a/flowing_logic.lua b/flowing_logic.lua index dffdabf..ea5b09e 100644 --- a/flowing_logic.lua +++ b/flowing_logic.lua @@ -74,15 +74,16 @@ local update_outlet = function(pos) end local spigot_check = function(pos,node) + local fdir=node.param2 local check = {{x=pos.x,y=pos.y,z=pos.z+1},{x=pos.x+1,y=pos.y,z=pos.z},{x=pos.x,y=pos.y,z=pos.z-1},{x=pos.x-1,y=pos.y,z=pos.z} } - dbg(node.param2..' checking '..minetest.pos_to_string(check[node.param2+1])..' for spigot at '..minetest.pos_to_string(pos)) - local top = minetest.env:get_node(check[node.param2+1]).name + dbg(fdir..' checking '..minetest.pos_to_string(check[fdir+1])..' for spigot at '..minetest.pos_to_string(pos)) + local top = minetest.env:get_node(check[fdir+1]).name 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'}) + 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 - minetest.env:add_node({x=pos.x,y=pos.y,z=pos.z},{name='pipeworks:spigot'}) + 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}) end end -- cgit v1.2.3