Fix ocelot spawn eggs

Closes #29
This commit is contained in:
Eric 2016-09-27 20:26:04 +02:00
parent 076846d74e
commit 99a15fd8f6

View File

@ -68,6 +68,8 @@ public class SpawnEggMeta {
return EntityType.HORSE; return EntityType.HORSE;
case "PolarBear": case "PolarBear":
return EntityType.POLAR_BEAR; return EntityType.POLAR_BEAR;
case "Ozelot":
return EntityType.OCELOT;
default: default:
return EntityType.valueOf(nbtEntityID.toUpperCase()); return EntityType.valueOf(nbtEntityID.toUpperCase());