atlatc: fix operation panel not in ndb, add warning when node is not found on queue run

h137
orwell96 2019-11-06 21:20:26 +01:00
parent 74f7233d21
commit a4efdc196c
3 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,7 @@
-- Uses global table 'atlatc' (AdvTrains_LuaATC)
-- Boilerplate to support localized strings if intllib mod is installed.
if minetest.get_modpath("intllib") then
if intllib then
atltrans = intllib.Getter()
else
atltrans = function(s,a,...)a={a,...}return s:gsub("@(%d+)",function(n)return a[tonumber(n)]end)end

View File

@ -34,6 +34,8 @@ function iq.mainloop(dtime)
local ndef=minetest.registered_nodes[node.name]
if ndef and ndef.luaautomation and ndef.luaautomation.fire_event then
ndef.luaautomation.fire_event(pos, evtdata)
else
atwarn("[atlatc][interrupt] Couldn't run event",evtdata.type,"on",pos,", something wrong with the node",node)
end
table.remove(queue, i)
i=i-1

View File

@ -10,7 +10,7 @@ minetest.register_node("advtrains_luaautomation:oppanel", {
description = "LuaAutomation operation panel",
groups = {
cracky = 1,
save_in_nodedb=1,
save_in_at_nodedb=1,
},
after_place_node = atlatc.active.after_place_node,
after_dig_node = atlatc.active.after_dig_node,