Fix missing ore drops

master
HybridDog 2019-05-16 11:36:15 +02:00
parent 532a3cb0d0
commit 427117d786
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ and not minetest.settings:get_bool("creative_mode") then
-- Sometimes nothing should be dropped
if name == ""
or not minetest.registered_nodes[name] then
or not minetest.registered_items[name] then
count = 0
end