mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-07-04 00:20:24 +02:00
Merge e4f2f84203
into 6b42419828
This commit is contained in:
@ -115,8 +115,10 @@ local function register_gate(name, inputnumber, assess, recipe, description)
|
||||
groups = {dig_immediate = 2, overheat = 1},
|
||||
mesecons = { receptor = {
|
||||
state = "off",
|
||||
rule_node_nocopy = true,
|
||||
rules = gate_get_output_rules
|
||||
}, effector = {
|
||||
rule_node_nocopy = true,
|
||||
rules = get_inputrules,
|
||||
action_change = update_gate
|
||||
}}
|
||||
@ -134,8 +136,10 @@ local function register_gate(name, inputnumber, assess, recipe, description)
|
||||
groups = {dig_immediate = 2, not_in_creative_inventory = 1, overheat = 1},
|
||||
mesecons = { receptor = {
|
||||
state = "on",
|
||||
rule_node_nocopy = true,
|
||||
rules = gate_get_output_rules
|
||||
}, effector = {
|
||||
rule_node_nocopy = true,
|
||||
rules = get_inputrules,
|
||||
action_change = update_gate
|
||||
}}
|
||||
|
Reference in New Issue
Block a user