forked from VoxeLibre/VoxeLibre
Merge pull request 'Fix possible crash on llama death' (#2690) from fix_llama_crash into fix_llama_player_inv
Reviewed-on: MineClone2/MineClone2#2690
This commit is contained in:
commit
2b9fb5679e
|
@ -74,6 +74,7 @@ function mcl_entity_invs.show_inv_form(ent,player,show_name)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function drop_inv(ent)
|
local function drop_inv(ent)
|
||||||
|
if not ent._items then return end
|
||||||
local pos = ent.object:get_pos()
|
local pos = ent.object:get_pos()
|
||||||
for i,it in pairs(ent._items) do
|
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))
|
local p = vector.add(pos,vector.new(math.random() - 0.5, math.random()-0.5, math.random()-0.5))
|
||||||
|
|
Loading…
Reference in New Issue