Add fountainhead (vertical spigot, basically).

This commit is contained in:
Vanessa Ezekowitz
2013-10-27 22:38:19 -04:00
parent a59e147013
commit 3d19cca557
5 changed files with 131 additions and 0 deletions

View File

@ -312,3 +312,13 @@ minetest.register_abm({
pipeworks_spigot_check(pos,node)
end
})
minetest.register_abm({
nodenames = {"pipeworks:fountainhead","pipeworks:fountainhead_pouring"},
interval = 1,
chance = 1,
action = function(pos, node, active_object_count, active_object_count_wider)
pipeworks_fountainhead_check(pos,node)
end
})