forked from minetest-mods/item_drop
Bugfix when droping many items
This commit is contained in:
parent
155b646053
commit
6f49a19fc2
19
init.lua
19
init.lua
|
@ -99,7 +99,25 @@ end
|
|||
|
||||
minetest.register_on_dignode(function(pos, oldnode, digger)
|
||||
local drop = minetest.get_drops(oldnode.name, digger:get_wielded_item():get_name())
|
||||
if drop == nil then
|
||||
return
|
||||
end
|
||||
for _,item in ipairs(drop) do
|
||||
if type(item) == "string" then
|
||||
local obj = minetest.env:add_item(pos, item)
|
||||
if obj ~= nil then
|
||||
obj:get_luaentity().collect = true
|
||||
local x = math.random(1, 5)
|
||||
if math.random(1,2) == 1 then
|
||||
x = -x
|
||||
end
|
||||
local z = math.random(1, 5)
|
||||
if math.random(1,2) == 1 then
|
||||
z = -z
|
||||
end
|
||||
obj:setvelocity({x=1/x, y=obj:getvelocity().y, z=1/z})
|
||||
end
|
||||
else
|
||||
for i=1,item:get_count() do
|
||||
local obj = minetest.env:add_item(pos, item:get_name())
|
||||
if obj ~= nil then
|
||||
|
@ -116,4 +134,5 @@ minetest.register_on_dignode(function(pos, oldnode, digger)
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end)
|
||||
|
|
Loading…
Reference in New Issue
Block a user