Skip to content
This repository was archived by the owner on Dec 22, 2019. It is now read-only.

Commit d240f03

Browse files
committed
EntityUtils
1 parent f93ea1d commit d240f03

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
package com.therandomlabs.randomlib;
22

3+
import java.util.List;
4+
import com.google.common.collect.ImmutableList;
35
import net.minecraft.inventory.EntityEquipmentSlot;
46

57
public final class EntityUtils {
6-
public static final EntityEquipmentSlot[] ARMOR_SLOTS = {
8+
public static final List<EntityEquipmentSlot> ARMOR_SLOTS = ImmutableList.of(
79
EntityEquipmentSlot.HEAD,
810
EntityEquipmentSlot.CHEST,
911
EntityEquipmentSlot.LEGS,
1012
EntityEquipmentSlot.FEET
11-
};
13+
);
1214

1315
private EntityUtils() {}
1416
}

0 commit comments

Comments
 (0)