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!
This commit is contained in:
Vanessa Ezekowitz
2013-01-04 01:34:25 -05:00
parent 88bc800ccb
commit 0a1f90c391
2 changed files with 9 additions and 9 deletions

View File

@ -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)