1
0
Fork 0

Fix random crash when piston breaks node with no player

This commit is contained in:
seventeenthShulker 2023-10-16 22:07:52 +02:00
parent 378df76e5f
commit 520fd773fb
1 changed files with 8 additions and 6 deletions

View File

@ -741,12 +741,14 @@ if minetest.is_creative_enabled("") then
for _, item in ipairs(drops) do
minetest.add_item(pos, item)
end
end
local inv = digger:get_inventory()
if inv then
for _, item in ipairs(drops) do
if not inv:contains_item("main", item, true) then
inv:add_item("main", item)
else
-- If there is a player
local inv = digger:get_inventory()
if inv then
for _, item in ipairs(drops) do
if not inv:contains_item("main", item, true) then
inv:add_item("main", item)
end
end
end
end