mirror of
https://github.com/minetest-mods/item_drop.git
synced 2025-01-03 11:37:36 +01:00
Fix crash when trying to spawn an unknown item
This commit is contained in:
parent
f6b8bcd7a7
commit
8e1878d101
3
init.lua
3
init.lua
@ -320,8 +320,9 @@ and not minetest.settings:get_bool("creative_mode") then
|
||||
name = item:get_name()
|
||||
end
|
||||
|
||||
if name == "" then
|
||||
-- Sometimes nothing should be dropped
|
||||
if name == ""
|
||||
or not minetest.registered_nodes[name] then
|
||||
count = 0
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user