Add 'MONSTER' to CreatureType
This commit is contained in:
parent
57b1b50610
commit
08e33ad0c6
@ -10,19 +10,19 @@ public enum CreatureType {
|
||||
CREEPER("Creeper"),
|
||||
GHAST("Ghast"),
|
||||
GIANT("Giant"),
|
||||
MONSTER("Monster"),
|
||||
PIG("Pig"),
|
||||
PIG_ZOMBIE("PigZombie"),
|
||||
SHEEP("Sheep"),
|
||||
SKELETON("Skeleton"),
|
||||
SLIME("Slime"),
|
||||
SPIDER("Spider"),
|
||||
ZOMBIE("Zombie"),
|
||||
SQUID("Squid"),
|
||||
SLIME("Slime");
|
||||
ZOMBIE("Zombie");
|
||||
|
||||
private String name;
|
||||
|
||||
private static final Map<String, CreatureType> mapping
|
||||
= new HashMap<String, CreatureType>();
|
||||
private static final Map<String, CreatureType> mapping = new HashMap<String, CreatureType>();
|
||||
|
||||
static {
|
||||
for (CreatureType type : EnumSet.allOf(CreatureType.class)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user