Prevent rotating wires (fixes #297)

This commit is contained in:
Carter Kolwey 2016-12-25 22:24:04 -06:00 committed by Jeija
parent d80c788fab
commit 5e8c3584d1
1 changed files with 4 additions and 0 deletions

View File

@ -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"