diff options
-rw-r--r-- | fw.lua | 10 | ||||
-rw-r--r-- | init.lua | 2 |
2 files changed, 11 insertions, 1 deletions
@@ -15,6 +15,16 @@ modes = {"Sensor","Timer","Phase Lock"} panellock = {"Unlocked","Locked"} logmodes = {"Quiet","Normal","Verbose"} +--Only accept digilines signals on the necessary channels +local event_ok = false +if event.type ~= "digiline" then event_ok = true end +if (not event_ok) and (string.find(event.channel,"detector") or string.find(event.channel,"preempt")) then event_ok = true end +if (not event_ok) and (event.channel == "touchscreen") then event_ok = true end +if not event_ok then + --Digilines signal on unimportant channel, stop execution + return +end + --Used for reverse lookups function pivot(table) local out = {} @@ -528,7 +528,7 @@ minetest.register_lbm({ action = function(pos) local meta = minetest.get_meta(pos) local mem = minetest.deserialize(meta:get_string("mem")) - if mem.cycle then + if mem and mem.cycle then local event = {} event.type = "interrupt" event.iid = "tick" |