diff options
author | Kahrl <kahrl@gmx.net> | 2012-01-23 15:28:57 +0100 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-01-25 20:18:20 +0200 |
commit | 0e8bd531c243c4e19217ef249c2316710cee44cc (patch) | |
tree | e677a8d48cf38c3f87f743aeb3061ff4dfff96e4 /data | |
parent | 24b1008d5634eb0941a6f97743dbbf1f8c353baf (diff) | |
download | minetest-0e8bd531c243c4e19217ef249c2316710cee44cc.tar.gz minetest-0e8bd531c243c4e19217ef249c2316710cee44cc.tar.bz2 minetest-0e8bd531c243c4e19217ef249c2316710cee44cc.zip |
Fix craftresult_is_preview flood in log and remove unnecessary debug output
Diffstat (limited to 'data')
-rw-r--r-- | data/builtin.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/data/builtin.lua b/data/builtin.lua index 2e31c43b8..3a38b60ad 100644 --- a/data/builtin.lua +++ b/data/builtin.lua @@ -159,7 +159,6 @@ function minetest.get_node_drops(nodename, toolname) local drop = ItemStack({name=nodename}):get_definition().drop if drop == nil then -- default drop - print("default drop: " .. nodename) return {ItemStack({name=nodename})} elseif type(drop) == "string" then -- itemstring drop |