diff options
author | sfan5 <sfan5@live.de> | 2011-09-11 19:17:14 +0200 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2011-09-11 19:17:14 +0200 |
commit | 4328a6442b0b35e1acdb15c9ab0ac51c2049ae83 (patch) | |
tree | e0a3b0d5dfe142b96e57885bc7808452d3ed8f5c | |
parent | 6496b1cf1fe3b172ad2611c51a7a1b9f0f168b13 (diff) | |
download | minetest-4328a6442b0b35e1acdb15c9ab0ac51c2049ae83.tar.gz minetest-4328a6442b0b35e1acdb15c9ab0ac51c2049ae83.tar.bz2 minetest-4328a6442b0b35e1acdb15c9ab0ac51c2049ae83.zip |
Fixed duplication bug
-rw-r--r-- | src/content_inventory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |