From 6330cfa4fb2e11a0603d9da813ad917c0c714be7 Mon Sep 17 00:00:00 2001 From: slweeb <91897291+slweeb@users.noreply.github.com> Date: Mon, 12 Jan 2026 17:58:48 -0500 Subject: [PATCH] Update switches.js --- mods/switches.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mods/switches.js b/mods/switches.js index bfd3a0a4..04ee3f4e 100644 --- a/mods/switches.js +++ b/mods/switches.js @@ -13,7 +13,7 @@ elements.switch_off = { name: "switch (off)", color: "#7F3333", behavior: behaviors.WALL, - noConduct: ["switch_on_control","switch_off_control"], + ignoreConduct: ["switch_on_control","switch_off_control"], category: "machines", }; @@ -22,7 +22,7 @@ elements.switch_on = { color: "#33CC33", behavior: behaviors.WALL, conduct: 1, - noConduct: ["switch_on_control","switch_off_control"], + ignoreConduct: ["switch_on_control","switch_off_control"], category: "machines", }; @@ -35,7 +35,7 @@ elements.switch_off_control = { "XX|CH:switch_on>switch_off|XX" ], conduct: 1, - noConduct: ["switch_on","switch_off"], + ignoreConduct: ["switch_on","switch_off"], category: "machines", }; @@ -48,6 +48,6 @@ elements.switch_on_control = { "XX|CH:switch_off>switch_on|XX" ], conduct: 1, - noConduct: ["switch_on","switch_off"], + ignoreConduct: ["switch_on","switch_off"], category: "machines", }; \ No newline at end of file