From 4328a6442b0b35e1acdb15c9ab0ac51c2049ae83 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Sun, 11 Sep 2011 19:17:14 +0200 Subject: [PATCH] Fixed duplication bug --- src/content_inventory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content_inventory.cpp b/src/content_inventory.cpp index 5fbb02d9b..55ddbf8dc 100644 --- a/src/content_inventory.cpp +++ b/src/content_inventory.cpp @@ -96,7 +96,7 @@ ServerActiveObject* item_craft_create_object(const std::string &subname, s16 item_craft_get_drop_count(const std::string &subname) { - if(subname == "rat" || subname == "firefly" || subname == "apple") + if(subname == "rat" || subname == "firefly") return 1; return -1;