Skip to content

Commit 80648b6

Browse files
committedJan 3, 2015
Fix #198 by adding gates to the "overheat" group
1 parent adb803c commit 80648b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎mesecons_gates/init.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function register_gate(name, inputnumber, assess, recipe)
7878
},{
7979
tiles = {"jeija_microcontroller_bottom.png^".."jeija_gate_off.png^"..
8080
"jeija_gate_"..name..".png"},
81-
groups = {dig_immediate = 2},
81+
groups = {dig_immediate = 2, overheat = 1},
8282
mesecons = { receptor = {
8383
state = "off",
8484
rules = gate_get_output_rules
@@ -89,7 +89,7 @@ function register_gate(name, inputnumber, assess, recipe)
8989
},{
9090
tiles = {"jeija_microcontroller_bottom.png^".."jeija_gate_on.png^"..
9191
"jeija_gate_"..name..".png"},
92-
groups = {dig_immediate = 2, not_in_creative_inventory = 1},
92+
groups = {dig_immediate = 2, not_in_creative_inventory = 1, overheat = 1},
9393
mesecons = { receptor = {
9494
state = "on",
9595
rules = gate_get_output_rules

0 commit comments

Comments
 (0)
Please sign in to comment.