diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-10-27 22:38:19 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-10-27 22:38:19 -0400 |
commit | 3d19cca557b3f0f176412dada60a98d256687438 (patch) | |
tree | f76d8533b4154e3d2c41eaaa3d86701637825dbc /pipes.lua | |
parent | a59e1470135dffe2c2adfecf7d9b39d6543bd7bc (diff) |
Add fountainhead (vertical spigot, basically).
Diffstat (limited to 'pipes.lua')
-rw-r--r-- | pipes.lua | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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 +}) + |