From bf8f3ef02a858d13c7a3feb524befb0892b9d24a Mon Sep 17 00:00:00 2001 From: PolyacovYury Date: Tue, 6 Nov 2018 02:09:22 +0300 Subject: [PATCH] Batpony ear tufts: z-fighting on inner sides of ears fixed --- .../java/com/minelittlepony/model/player/ModelBatpony.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/minelittlepony/model/player/ModelBatpony.java b/src/main/java/com/minelittlepony/model/player/ModelBatpony.java index 0421342a..aa13a9c7 100644 --- a/src/main/java/com/minelittlepony/model/player/ModelBatpony.java +++ b/src/main/java/com/minelittlepony/model/player/ModelBatpony.java @@ -20,12 +20,12 @@ public class ModelBatpony extends ModelPegasus { head.child() .tex(12, 16).box(-4, -6, 1, 2, 2, 2, stretch) // right ear .tex(0, 3).box(-3.5F, -6.49F, 1.001F, 1, 1, 1, stretch) - .tex(0, 5).box(-3, -6.49F, 2.001F, 1, 1, 1, stretch); + .tex(0, 5).box(-2.998F, -6.49F, 2.001F, 1, 1, 1, stretch); head.child().flip() .tex(12, 16).box( 2, -6, 1, 2, 2, 2, stretch) // left ear .tex(0, 3).box( 2.5F, -6.49F, 1.001F, 1, 1, 1, stretch) - .tex(0, 5).box( 2, -6.49F, 2.001F, 1, 1, 1, stretch); + .tex(0, 5).box( 1.998F, -6.49F, 2.001F, 1, 1, 1, stretch); } @Override