Fix crash in hopper minecarts through missing ent

This commit is contained in:
ancientmarinerdev 2023-06-27 17:42:40 +01:00
parent f335171965
commit b05fa5562c
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ local function hopper_take_item(self, dtime)
for k, v in pairs(objs) do
local ent = v:get_luaentity()
if ent._removed or not ent.itemstring or ent.itemstring == "" then
if not ent or (ent and ent._removed) or not ent.itemstring or ent.itemstring == "" then
--minetest.log("Ignore this item")
break
end