diff options
author | root <root@linuxworks.belug.de> | 2017-10-08 12:58:35 +0200 |
---|---|---|
committer | root <root@linuxworks.belug.de> | 2017-10-08 12:58:35 +0200 |
commit | 7e390cfda2bafb000c1d6688da472a71e591bc94 (patch) | |
tree | 6138f169a50eb2b8d1dd65fd75c0d568da4d4073 /pipes.lua | |
parent | 89c704fc3d5e9115caf5b4d6564b10797bb95beb (diff) | |
parent | 879b4489b21946306004506bea51b32f6d9de6a2 (diff) |
Merge branch 'master' of https://github.com/minetest-mods/pipeworks
Diffstat (limited to 'pipes.lua')
-rw-r--r-- | pipes.lua | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -191,6 +191,16 @@ table.insert(pipes_full_nodenames,"pipeworks:valve_on_loaded") table.insert(pipes_full_nodenames,"pipeworks:entry_panel_loaded") table.insert(pipes_full_nodenames,"pipeworks:flow_sensor_loaded") +pipeworks.pipes_full_nodenames = pipes_full_nodenames +pipeworks.pipes_empty_nodenames = pipes_empty_nodenames + + + + +if not pipeworks.enable_new_flow_logic then +-- sorry, no indents... it messes with the patchlogs too much + + minetest.register_abm({ nodenames = pipes_empty_nodenames, interval = 1, @@ -227,3 +237,6 @@ minetest.register_abm({ end }) + + +end |