From 00c30d8b52c2e4df3156fc8f5884cf23c1abbbdd Mon Sep 17 00:00:00 2001 From: Fryslan Date: Thu, 7 Jul 2016 21:58:54 +0200 Subject: [PATCH] [NAMING] Renamed UnEquip to Unequip --- .../java/org/rev317/min/api/methods/Equipment.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/rev317/min/api/methods/Equipment.java b/src/main/java/org/rev317/min/api/methods/Equipment.java index 894d2f2..2a12ea3 100644 --- a/src/main/java/org/rev317/min/api/methods/Equipment.java +++ b/src/main/java/org/rev317/min/api/methods/Equipment.java @@ -6,7 +6,7 @@ import org.rev317.min.Loader; import org.rev317.min.api.wrappers.Item; /** - * Created by Piet Jetse Heeringa on 27-6-2016. + * @author Piet Jetse Heeringa */ public class Equipment { @@ -30,9 +30,9 @@ public class Equipment { } /** - * UnEquips an Item based on the ID of that item. + * Unequips an Item based on the ID of that item. * - * @param id Item ID to UnEquip. + * @param id Item ID to Unequip. */ public static void unequip(int id) { for (Slot slot : Slot.values()) { @@ -43,9 +43,9 @@ public class Equipment { } /** - * UnEquips the item from the given Slot. + * Unequips the item from the given Slot. * - * @param slot Slot to UnEquip the item from. + * @param slot Slot to Unequip the item from. */ public static void unequip(final Slot slot) { Menu.sendAction(632, slot.id() - 1, slot.slot, 1688, -1, 3);