InsaneProtestor/mods/ip_terumet/interop/mesecons.lua
2022-11-22 00:44:34 -05:00

7 lines
284 B
Lua

-- interop bugfix with Mesecons/piston mod
-- fix for https://github.com/Terumoc/terumet/issues/16
terumet.machine.register_on_new_machine_node(function (id, def)
-- register every terumetal machine node as a "stopper" for pistons
mesecon.register_mvps_stopper(id, true)
end)