From c16dd2c61ee8c13cd69cac9fda5c642c19e967e2 Mon Sep 17 00:00:00 2001 From: FatherToast Date: Fri, 15 Jul 2022 17:29:35 -0500 Subject: [PATCH] Fix blazy eye height --- .../common/entity/blaze/_SpecialBlazeEntity.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/fathertoast/specialmobs/common/entity/blaze/_SpecialBlazeEntity.java b/src/main/java/fathertoast/specialmobs/common/entity/blaze/_SpecialBlazeEntity.java index 0093809..3f96ecf 100644 --- a/src/main/java/fathertoast/specialmobs/common/entity/blaze/_SpecialBlazeEntity.java +++ b/src/main/java/fathertoast/specialmobs/common/entity/blaze/_SpecialBlazeEntity.java @@ -205,11 +205,11 @@ public class _SpecialBlazeEntity extends BlazeEntity implements IRangedAttackMob getSpecialData().tick(); } - /** @return The eye height of this entity when standing. */ - @Override - protected float getStandingEyeHeight( Pose pose, EntitySize size ) { - return super.getStandingEyeHeight( pose, size ) * getSpecialData().getBaseScale() * (isBaby() ? 0.53448F : 1.0F); - } + // /** @return The eye height of this entity when standing. */ - Blazes use auto-scaled eye height + // @Override + // protected float getStandingEyeHeight( Pose pose, EntitySize size ) { + // return super.getStandingEyeHeight( pose, size ) * getSpecialData().getBaseScale() * (isBaby() ? 0.53448F : 1.0F); + // } /** @return Whether this entity is immune to fire damage. */ @Override