diff options
author | thetaepsilon-gamedev <thetaepsilon-gamedev@noreply.users.github.com> | 2017-09-27 14:14:33 +0100 |
---|---|---|
committer | thetaepsilon-gamedev <thetaepsilon-gamedev@noreply.users.github.com> | 2017-09-27 14:14:33 +0100 |
commit | f82570f58027ec7659c4050124fdc15d1203dbd8 (patch) | |
tree | b13cec564d93313f9a9c5364071fae6e744655d4 /flowing_logic.lua | |
parent | 2adcd3e777c45d5988ce21d3130fa8f6c6483e53 (diff) |
initial stub patches to re-implement new_flow_logic
Diffstat (limited to 'flowing_logic.lua')
-rw-r--r-- | flowing_logic.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/flowing_logic.lua b/flowing_logic.lua index 632baa6..0e62b46 100644 --- a/flowing_logic.lua +++ b/flowing_logic.lua @@ -132,3 +132,11 @@ pipeworks.fountainhead_check = function(pos, node) end end end + +local debuglog = function(msg) + print("## pipeworks: "..msg) +end + +pipeworks.balance_pressure = function(pos, node) + debuglog("balance_pressure() stub! "..node.name.." at "..pos.x.." "..pos.y.." "..pos.z) +end |