diff options
| author | thetaepsilon-gamedev <thetaepsilon-gamedev@noreply.users.github.com> | 2017-09-30 20:47:00 +0100 | 
|---|---|---|
| committer | thetaepsilon-gamedev <thetaepsilon-gamedev@noreply.users.github.com> | 2017-09-30 21:27:50 +0100 | 
| commit | 0251baf692741c5cf3173ff9415c94dbbc3719f3 (patch) | |
| tree | 2225840dc63198f17e78b42cc1c40c753dc40007 /register_flow_logic.lua | |
| parent | 40eeaac2ecb25dbc55f7315342e74723d6248534 (diff) | |
new_flow_logic.lua: move logic functions inside pipeworks.flowlogic sub-table
Diffstat (limited to 'register_flow_logic.lua')
| -rw-r--r-- | register_flow_logic.lua | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/register_flow_logic.lua b/register_flow_logic.lua index 8580188..3a8df8e 100644 --- a/register_flow_logic.lua +++ b/register_flow_logic.lua @@ -23,7 +23,7 @@ minetest.register_abm({  	interval = 1,  	chance = 1,  	action = function(pos, node, active_object_count, active_object_count_wider) -		pipeworks.balance_pressure(pos, node) +		pipeworks.flowlogic.balance_pressure(pos, node)  	end  }) @@ -34,7 +34,7 @@ if pipeworks.enable_pipe_devices then  		interval = 1,  		chance = 1,  		action = function(pos, node, active_object_count, active_object_count_wider) -			pipeworks.run_pump_intake(pos, node) +			pipeworks.flowlogic.run_pump_intake(pos, node)  		end  	}) | 
