This commit is contained in:
bconlon 2020-07-19 21:22:04 -07:00
parent affa56095d
commit 47170d62f4
2 changed files with 6 additions and 0 deletions

View file

@ -38,6 +38,8 @@ public class MoaRenderer extends RenderLiving {
private static final ResourceLocation MOS = new ResourceLocation("aether_legacy", "textures/entities/moa/mos.png");
private static final ResourceLocation RAPTOR = new ResourceLocation("aether_legacy", "textures/entities/moa/raptor.png");
public MoaRenderer() {
super(new MoaModel(0.0F), 1.0F);
@ -158,6 +160,10 @@ public class MoaRenderer extends RenderLiving {
{
return MOS;
}
else if (moa.hasCustomNameTag() && "Raptor__".equals(moa.getCustomNameTag()) && (moa.getMoaType() == AetherMoaTypes.blue))
{
return RAPTOR;
}
else
{
return moa.getMoaType().getTexture(moa.isSaddled(), moa.riddenByEntity != null);

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB