From 0a1f90c391dcc4907665e1211c666310d36a740b Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 4 Jan 2013 01:34:25 -0500 Subject: Made pipes able to carry water! It was just a minor logic error resulting from moving the water flowing code into it's own file when I originally imported it. Many thanks to Mauvebic for writing it! --- flowing_logic.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'flowing_logic.lua') diff --git a/flowing_logic.lua b/flowing_logic.lua index 95162a3..d58d124 100644 --- a/flowing_logic.lua +++ b/flowing_logic.lua @@ -86,22 +86,22 @@ local spigot_check = function(pos,node) end minetest.register_abm({ - nodenames = empty_nodenames, - interval = 15, + nodenames = pipes_empty_nodenames, + interval = 1, chance = 1, action = function(pos, node, active_object_count, active_object_count_wider) check4inflows(pos,node) end }) minetest.register_abm({ - nodenames = full_nodenames, - interval = 10, + nodenames = pipes_full_nodenames, + interval = 1, chance = 1, action = function(pos, node, active_object_count, active_object_count_wider) checksources(pos,node) end }) minetest.register_abm({ nodenames = {'pipeworks:outlet','pipeworks:spigot'}, - interval = 10, + interval = 1, chance = 1, action = function(pos, node, active_object_count, active_object_count_wider) if node.name == 'pipeworks:outlet' then update_outlet(pos) -- cgit v1.2.3