diff --git a/src/main/java/com/comandante/creeper/player/EquipmentSlotType.java b/src/main/java/com/comandante/creeper/player/EquipmentSlotType.java
index dd990f0719a427112493dee73114fa0914943569..c7617197d79dcaed6ec6fa1b8a234f698b82a87b 100644
--- a/src/main/java/com/comandante/creeper/player/EquipmentSlotType.java
+++ b/src/main/java/com/comandante/creeper/player/EquipmentSlotType.java
@@ -36,14 +36,6 @@ public enum EquipmentSlotType {
     }
 
     public static List<EquipmentSlotType> getAll() {
-        List<EquipmentSlotType> theName = Lists.newArrayList();
-        theName.add(EquipmentSlotType.HEAD);
-        theName.add(EquipmentSlotType.CHEST);
-        theName.add(EquipmentSlotType.WRISTS);
-        theName.add(EquipmentSlotType.HAND);
-        theName.add(EquipmentSlotType.LEGS);
-        theName.add(EquipmentSlotType.FEET);
-        theName.add(EquipmentSlotType.BAG);
-        return theName;
+        return Lists.newArrayList(EquipmentSlotType.values());
     }
 }