diff options
Diffstat (limited to 'src/Java/gtPlusPlus/core/client')
-rw-r--r-- | src/Java/gtPlusPlus/core/client/renderer/RenderGiantChicken.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/Java/gtPlusPlus/core/client/renderer/RenderGiantChicken.java b/src/Java/gtPlusPlus/core/client/renderer/RenderGiantChicken.java index b3d1ce21fc..d3c1e852d9 100644 --- a/src/Java/gtPlusPlus/core/client/renderer/RenderGiantChicken.java +++ b/src/Java/gtPlusPlus/core/client/renderer/RenderGiantChicken.java @@ -7,10 +7,10 @@ import net.minecraft.client.renderer.entity.RenderChicken; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLiving; import net.minecraft.entity.EntityLivingBase; -import net.minecraft.entity.passive.EntityChicken; import net.minecraft.util.MathHelper; import net.minecraft.util.ResourceLocation; +import gtPlusPlus.core.entity.monster.EntityGiantChickenBase; import gtPlusPlus.core.util.reflect.ReflectionUtils; @SideOnly(Side.CLIENT) @@ -42,15 +42,15 @@ public class RenderGiantChicken extends RenderChicken { * (Render<T extends Entity) and this method has signature public void func_76986_a(T entity, double d, double d1, * double d2, float f, float f1). But JAD is pre 1.5 so doesn't do that. */ - public void doRender(EntityChicken p_76986_1_, double p_76986_2_, double p_76986_4_, double p_76986_6_, float p_76986_8_, float p_76986_9_) + public void doRender(EntityGiantChickenBase p_76986_1_, double p_76986_2_, double p_76986_4_, double p_76986_6_, float p_76986_8_, float p_76986_9_) { - super.doRender((EntityLiving)p_76986_1_, p_76986_2_, p_76986_4_, p_76986_6_, p_76986_8_, p_76986_9_); + this.doRender((EntityLiving)p_76986_1_, p_76986_2_, p_76986_4_, p_76986_6_, p_76986_8_, p_76986_9_); } /** * Returns the location of an entity's texture. Doesn't seem to be called unless you call Render.bindEntityTexture. */ - protected ResourceLocation getEntityTexture(EntityChicken p_110775_1_) + protected ResourceLocation getEntityTexture(EntityGiantChickenBase p_110775_1_) { return chickenTexturesEx; } @@ -58,7 +58,7 @@ public class RenderGiantChicken extends RenderChicken { /** * Defines what float the third param in setRotationAngles of ModelBase is */ - protected float handleRotationFloat(EntityChicken p_77044_1_, float p_77044_2_) + protected float handleRotationFloat(EntityGiantChickenBase p_77044_1_, float p_77044_2_) { float f1 = p_77044_1_.field_70888_h + (p_77044_1_.field_70886_e - p_77044_1_.field_70888_h) * p_77044_2_; float f2 = p_77044_1_.field_70884_g + (p_77044_1_.destPos - p_77044_1_.field_70884_g) * p_77044_2_; @@ -73,7 +73,7 @@ public class RenderGiantChicken extends RenderChicken { */ public void doRender(EntityLiving p_76986_1_, double p_76986_2_, double p_76986_4_, double p_76986_6_, float p_76986_8_, float p_76986_9_) { - this.doRender((EntityChicken)p_76986_1_, p_76986_2_, p_76986_4_, p_76986_6_, p_76986_8_, p_76986_9_); + this.doRender((EntityGiantChickenBase)p_76986_1_, p_76986_2_, p_76986_4_, p_76986_6_, p_76986_8_, p_76986_9_); } /** @@ -81,7 +81,7 @@ public class RenderGiantChicken extends RenderChicken { */ protected float handleRotationFloat(EntityLivingBase p_77044_1_, float p_77044_2_) { - return this.handleRotationFloat((EntityChicken)p_77044_1_, p_77044_2_); + return this.handleRotationFloat((EntityGiantChickenBase)p_77044_1_, p_77044_2_); } /** @@ -92,7 +92,7 @@ public class RenderGiantChicken extends RenderChicken { */ public void doRender(EntityLivingBase p_76986_1_, double p_76986_2_, double p_76986_4_, double p_76986_6_, float p_76986_8_, float p_76986_9_) { - this.doRender((EntityChicken)p_76986_1_, p_76986_2_, p_76986_4_, p_76986_6_, p_76986_8_, p_76986_9_); + this.doRender((EntityGiantChickenBase)p_76986_1_, p_76986_2_, p_76986_4_, p_76986_6_, p_76986_8_, p_76986_9_); } /** @@ -100,7 +100,7 @@ public class RenderGiantChicken extends RenderChicken { */ protected ResourceLocation getEntityTexture(Entity p_110775_1_) { - return this.getEntityTexture((EntityChicken)p_110775_1_); + return this.getEntityTexture((EntityGiantChickenBase)p_110775_1_); } /** @@ -111,6 +111,6 @@ public class RenderGiantChicken extends RenderChicken { */ public void doRender(Entity p_76986_1_, double p_76986_2_, double p_76986_4_, double p_76986_6_, float p_76986_8_, float p_76986_9_) { - this.doRender((EntityChicken)p_76986_1_, p_76986_2_, p_76986_4_, p_76986_6_, p_76986_8_, p_76986_9_); + this.doRender((EntityGiantChickenBase)p_76986_1_, p_76986_2_, p_76986_4_, p_76986_6_, p_76986_8_, p_76986_9_); } }
\ No newline at end of file |