This commit is contained in:
Alexsandro Percy 2022-03-23 20:18:30 -03:00
parent 6213cfaa71
commit 3575ea26ad
1 changed files with 16 additions and 14 deletions

View File

@ -90,23 +90,25 @@ end
function airutils.remove_inventory(self)
local inventory = airutils.get_inventory(self)
if inventory:is_empty("main") then
return minetest.remove_detached_inventory(self._inv_id)
else
local inv_content = inventory:get_list("main")
if inv_content then
local pos = self.object:get_pos()
for k, v in pairs(inv_content) do
local count = 0
for i = 0,v:get_count()-1,1
do
minetest.add_item({x=pos.x+math.random()-0.5,y=pos.y,z=pos.z+math.random()-0.5},v:get_name())
count = count + 1
if count >= 5 then break end
if inventory then
if inventory:is_empty("main") then
return minetest.remove_detached_inventory(self._inv_id)
else
local inv_content = inventory:get_list("main")
if inv_content then
local pos = self.object:get_pos()
for k, v in pairs(inv_content) do
local count = 0
for i = 0,v:get_count()-1,1
do
minetest.add_item({x=pos.x+math.random()-0.5,y=pos.y,z=pos.z+math.random()-0.5},v:get_name())
count = count + 1
if count >= 5 then break end
end
end
end
return minetest.remove_detached_inventory(self._inv_id)
end
return minetest.remove_detached_inventory(self._inv_id)
end
return false
end