Fix crash when triggering explosion (type check error)

This commit is contained in:
Alexander Minges 2020-05-08 17:31:41 +02:00 committed by Wuzzy
parent fb55d33bfe
commit ad70a71f8c
1 changed files with 1 additions and 1 deletions

View File

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