1
0
Fork 0

Fix sheep wool farm crash

This commit is contained in:
ancientmarinerdev 2023-05-07 22:13:42 +01:00
parent 6151507442
commit ff426412ef
2 changed files with 3 additions and 0 deletions

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