From cd90aa790a9b2e1ace02f9cf67d335bf5734df20 Mon Sep 17 00:00:00 2001 From: Dani Hodovic Date: Sun, 22 Feb 2015 17:19:39 +0100 Subject: [PATCH] Fixed a typo --- src/org/rev317/min/api/methods/Inventory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/rev317/min/api/methods/Inventory.java b/src/org/rev317/min/api/methods/Inventory.java index f1f1612..1045e8a 100644 --- a/src/org/rev317/min/api/methods/Inventory.java +++ b/src/org/rev317/min/api/methods/Inventory.java @@ -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; }