Explosions: Change item drop handler

This commit is contained in:
Wuzzy 2020-04-30 20:58:58 +02:00
parent 9ee0ef5a8d
commit 2b5ddbd62d
1 changed files with 3 additions and 2 deletions

View File

@ -359,9 +359,10 @@ local function trace_explode(pos, strength, raydirs, radius, drop_chance)
local drop = minetest.get_node_drops(name, "")
for _, item in ipairs(drop) do
if type(item) == "string" then
minetest.add_item(npos, item)
if item ~= "string" then
item = item:get_name() .. item:get_count()
end
minetest.add_item(npos, item)
end
end
end