mirror of
https://github.com/mt-mods/pipeworks.git
synced 2025-06-29 23:00:49 +02:00
new flow logic: abms.lua: rename neighbour output helper to better indicate lack of rotation support
This commit is contained in:
@ -377,7 +377,7 @@ minetest.register_node(nodename_spigot_loaded, {
|
||||
new_flow_logic_register.simple(nodename_spigot_empty)
|
||||
new_flow_logic_register.simple(nodename_spigot_loaded)
|
||||
local spigot_min = 1
|
||||
local outputfn = pipeworks.flowlogic.helpers.make_neighbour_output({{x=0, y=-1, z=0}})
|
||||
local outputfn = pipeworks.flowlogic.helpers.make_neighbour_output_fixed({{x=0, y=-1, z=0}})
|
||||
new_flow_logic_register.output(nodename_spigot_empty, spigot_min, outputfn)
|
||||
new_flow_logic_register.output(nodename_spigot_loaded, spigot_min, outputfn)
|
||||
|
||||
@ -670,7 +670,7 @@ minetest.register_node(nodename_fountain_loaded, {
|
||||
new_flow_logic_register.simple(nodename_fountain_empty)
|
||||
new_flow_logic_register.simple(nodename_fountain_loaded)
|
||||
local fountain_min = 1
|
||||
local fountainfn = pipeworks.flowlogic.helpers.make_neighbour_output({{x=0, y=1, z=0}})
|
||||
local fountainfn = pipeworks.flowlogic.helpers.make_neighbour_output_fixed({{x=0, y=1, z=0}})
|
||||
new_flow_logic_register.output(nodename_fountain_empty, fountain_min, fountainfn)
|
||||
new_flow_logic_register.output(nodename_fountain_loaded, fountain_min, fountainfn)
|
||||
|
||||
|
Reference in New Issue
Block a user