From 5e8c3584d171f9b2ae1f9af610350e249dd4aa29 Mon Sep 17 00:00:00 2001 From: Carter Kolwey Date: Sun, 25 Dec 2016 22:24:04 -0600 Subject: [PATCH] Prevent rotating wires (fixes #297) --- mesecons/util.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mesecons/util.lua b/mesecons/util.lua index 39f5696..21ceda1 100644 --- a/mesecons/util.lua +++ b/mesecons/util.lua @@ -179,6 +179,10 @@ end function mesecon.register_node(name, spec_common, spec_off, spec_on) spec_common.drop = spec_common.drop or name .. "_off" spec_common.__mesecon_basename = name + if spec_common.mesecon_wire then + -- Prevent wires from being rotated + spec_common.on_rotate = false + end spec_on.__mesecon_state = "on" spec_off.__mesecon_state = "off"