Fixed a typo

This commit is contained in:
Dani Hodovic
2015-02-22 17:19:39 +01:00
parent 5de8c660b9
commit cd90aa790a
@@ -218,7 +218,7 @@ public class 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;
}