Update switches.js
This commit is contained in:
parent
e6d09e79b0
commit
6330cfa4fb
|
|
@ -13,7 +13,7 @@ elements.switch_off = {
|
||||||
name: "switch (off)",
|
name: "switch (off)",
|
||||||
color: "#7F3333",
|
color: "#7F3333",
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
noConduct: ["switch_on_control","switch_off_control"],
|
ignoreConduct: ["switch_on_control","switch_off_control"],
|
||||||
category: "machines",
|
category: "machines",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -22,7 +22,7 @@ elements.switch_on = {
|
||||||
color: "#33CC33",
|
color: "#33CC33",
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
conduct: 1,
|
conduct: 1,
|
||||||
noConduct: ["switch_on_control","switch_off_control"],
|
ignoreConduct: ["switch_on_control","switch_off_control"],
|
||||||
category: "machines",
|
category: "machines",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -35,7 +35,7 @@ elements.switch_off_control = {
|
||||||
"XX|CH:switch_on>switch_off|XX"
|
"XX|CH:switch_on>switch_off|XX"
|
||||||
],
|
],
|
||||||
conduct: 1,
|
conduct: 1,
|
||||||
noConduct: ["switch_on","switch_off"],
|
ignoreConduct: ["switch_on","switch_off"],
|
||||||
category: "machines",
|
category: "machines",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -48,6 +48,6 @@ elements.switch_on_control = {
|
||||||
"XX|CH:switch_off>switch_on|XX"
|
"XX|CH:switch_off>switch_on|XX"
|
||||||
],
|
],
|
||||||
conduct: 1,
|
conduct: 1,
|
||||||
noConduct: ["switch_on","switch_off"],
|
ignoreConduct: ["switch_on","switch_off"],
|
||||||
category: "machines",
|
category: "machines",
|
||||||
};
|
};
|
||||||
Loading…
Reference in New Issue