Skip to content

Commit

Permalink
Fix #198 by adding gates to the "overheat" group
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeija committed Jan 3, 2015
1 parent adb803c commit 80648b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mesecons_gates/init.lua
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 80648b6

Please sign in to comment.