mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-04-02 18:30:29 +02:00
fix crash caused by missing nil check
This commit is contained in:
parent
e7d11b3c38
commit
c9f3915792
@ -88,7 +88,7 @@ local piston_on = function(pos, node)
|
|||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
-- NOTE: this gets calculated twice, but fixing this would mean changing the public api.
|
-- NOTE: this gets calculated twice, but fixing this would mean changing the public api.
|
||||||
local stack = mesecon.mvps_get_stack(pusher_pos, dir, max_push, meta:get_string("owner"))
|
local stack = mesecon.mvps_get_stack(pusher_pos, dir, max_push, meta:get_string("owner"))
|
||||||
for _, n in ipairs(stack) do
|
for _, n in ipairs(stack or {}) do
|
||||||
-- fix issue 645
|
-- fix issue 645
|
||||||
if vector.equals(n.pos, behind_pos) then
|
if vector.equals(n.pos, behind_pos) then
|
||||||
return
|
return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user