Fix possible crash on llama death

This commit is contained in:
cora 2022-10-01 00:31:06 +02:00 committed by Gitea
parent 0e364fc22c
commit 0fd1d34aa5
1 changed files with 1 additions and 0 deletions

View File

@ -74,6 +74,7 @@ function mcl_entity_invs.show_inv_form(ent,player,show_name)
end
local function drop_inv(ent)
if not ent._items then return end
local pos = ent.object:get_pos()
for i,it in pairs(ent._items) do
local p = vector.add(pos,vector.new(math.random() - 0.5, math.random()-0.5, math.random()-0.5))