diff --git a/src/main/java/its_meow/betteranimalsplus/common/entity/projectile/EntityPheasantEgg.java b/src/main/java/its_meow/betteranimalsplus/common/entity/projectile/EntityPheasantEgg.java index 5d2962bd..7362dba8 100644 --- a/src/main/java/its_meow/betteranimalsplus/common/entity/projectile/EntityPheasantEgg.java +++ b/src/main/java/its_meow/betteranimalsplus/common/entity/projectile/EntityPheasantEgg.java @@ -52,6 +52,7 @@ protected void onImpact(RayTraceResult result) { EntityPheasant entity = new EntityPheasant(this.world); entity.setGrowingAge(-24000); entity.setLocationAndAngles(this.posX, this.posY, this.posZ, this.rotationYaw, 0.0F); + entity.setType(entity.getRandomType()); this.world.spawnEntity(entity); } }