summaryrefslogtreecommitdiff
path: root/builtin/item.lua
diff options
context:
space:
mode:
Diffstat (limited to 'builtin/item.lua')
-rw-r--r--builtin/item.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/item.lua b/builtin/item.lua
index 4be77e1d7..80c665c99 100644
--- a/builtin/item.lua
+++ b/builtin/item.lua
@@ -76,10 +76,10 @@ function minetest.get_node_drops(nodename, toolname)
local drop = ItemStack({name=nodename}):get_definition().drop
if drop == nil then
-- default drop
- return {ItemStack({name=nodename})}
+ return {nodename}
elseif type(drop) == "string" then
-- itemstring drop
- return {ItemStack(drop)}
+ return {drop}
elseif drop.items == nil then
-- drop = {} to disable default drop
return {}