fork update #10

Merged
chmodsayshello merged 220 commits from VoxeLibre/VoxeLibre:master into master 2023-06-04 12:44:03 +02:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit ff426412ef - Show all commits

View File

@ -89,6 +89,8 @@ minetest.register_globalstep(function (dtime)
end)
function mesecon.queue:execute(action)
if not action.pos then return end
-- ignore if action queue function name doesn't exist,
-- (e.g. in case the action queue savegame was written by an old mesecons version)
if mesecon.queue.funcs[action.func] then

View File

@ -521,6 +521,7 @@ end
-- outputnode (receptor or conductor) at position `output` and has an output in direction `rule`
function mesecon.rules_link_rule_all(output, rule)
local input = vector.add(output, rule)
if not input then return {} end
local inputnode = get_node_force(input)
local inputrules = mesecon.get_any_inputrules(inputnode)
if not inputrules then