diff options
author | Jeija <norrepli@gmail.com> | 2015-01-03 14:04:18 +0100 |
---|---|---|
committer | Jeija <norrepli@gmail.com> | 2015-01-03 14:04:18 +0100 |
commit | 80648b6c1443bf3221edc7197273da65330e4b09 (patch) | |
tree | 0a64392189df14d2cbad995382d9b8c0c483cb1c | |
parent | adb803ce17e335400ba6ef451c359923d2af5581 (diff) | |
download | mesecons-80648b6c1443bf3221edc7197273da65330e4b09.tar mesecons-80648b6c1443bf3221edc7197273da65330e4b09.tar.gz mesecons-80648b6c1443bf3221edc7197273da65330e4b09.tar.bz2 mesecons-80648b6c1443bf3221edc7197273da65330e4b09.tar.xz mesecons-80648b6c1443bf3221edc7197273da65330e4b09.zip |
Fix #198 by adding gates to the "overheat" group
-rw-r--r-- | mesecons_gates/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesecons_gates/init.lua b/mesecons_gates/init.lua index 2b6771a..78a3e83 100644 --- a/mesecons_gates/init.lua +++ b/mesecons_gates/init.lua @@ -78,7 +78,7 @@ function register_gate(name, inputnumber, assess, recipe) },{ tiles = {"jeija_microcontroller_bottom.png^".."jeija_gate_off.png^".. "jeija_gate_"..name..".png"}, - groups = {dig_immediate = 2}, + groups = {dig_immediate = 2, overheat = 1}, mesecons = { receptor = { state = "off", rules = gate_get_output_rules @@ -89,7 +89,7 @@ function register_gate(name, inputnumber, assess, recipe) },{ tiles = {"jeija_microcontroller_bottom.png^".."jeija_gate_on.png^".. "jeija_gate_"..name..".png"}, - groups = {dig_immediate = 2, not_in_creative_inventory = 1}, + groups = {dig_immediate = 2, not_in_creative_inventory = 1, overheat = 1}, mesecons = { receptor = { state = "on", rules = gate_get_output_rules |