Add parrot support

This commit is contained in:
shansen 2017-06-09 01:19:49 +02:00
parent bbef805c28
commit 304cf29b42
1 changed files with 2 additions and 1 deletions

View File

@ -63,7 +63,8 @@ public enum EggType {
GUARDIAN(EntityType.GUARDIAN, 68, "Guardian"),
RABBIT(EntityType.RABBIT, 101, "Rabbit"),
POLAR_BEAR(EntityType.POLAR_BEAR, 102, "PolarBear"),
SHULKER(EntityType.SHULKER, 69, "Shulker");
SHULKER(EntityType.SHULKER, 69, "Shulker"),
PARROT(EntityType.PARROT, 105, "Parrot");
private final EntityType entityType;
private final Integer creatureId;