Merge pull request #24 from dani-h/master

Fixed a typo
This commit is contained in:
Jeroen Ketelaar
2015-02-25 13:26:12 +01:00
@@ -218,7 +218,7 @@ public class Inventory {
* *
* @return True if the item exists in the inventory * @return True if the item exists in the inventory
*/ */
public static boolean containts(int... id) { public static boolean contains(int... id) {
return getCount(id) > 0; return getCount(id) > 0;
} }