Skip to content

Commit

Permalink
Fix eye glow on coyotes and feral wolves
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmeow authored Nov 30, 2019
1 parent 7842264 commit 712e802
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ public LayerEyesTamed(RenderLiving<T> baseRenderer, ResourceLocation texture) {

@Override
public void doRenderLayer(T entity, float limbSwing, float limbSwingAmount, float partialTicks, float ageInTicks, float netHeadYaw, float headPitch, float scale) {
if(entity.isTamed()) {
if(!entity.isTamed()) {
super.doRenderLayer(entity, limbSwing, limbSwingAmount, partialTicks, ageInTicks, netHeadYaw, headPitch, scale);
}
}

}
}

0 comments on commit 712e802

Please sign in to comment.