From 8d992a5361da15b85be862d07dbcc3119712a444 Mon Sep 17 00:00:00 2001 From: Sollace Date: Sat, 2 Jun 2018 20:13:37 +0200 Subject: [PATCH] Fixed the tops and bottoms of saddlebags being flipped --- .../minelittlepony/model/ponies/ModelVillagerPony.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/minelittlepony/model/ponies/ModelVillagerPony.java b/src/main/java/com/minelittlepony/model/ponies/ModelVillagerPony.java index bd168f31..c8181686 100644 --- a/src/main/java/com/minelittlepony/model/ponies/ModelVillagerPony.java +++ b/src/main/java/com/minelittlepony/model/ponies/ModelVillagerPony.java @@ -78,10 +78,10 @@ public class ModelVillagerPony extends ModelAlicorn { .addTopPlane(-4, -4.5F, 0, 8, 1, stretch) //strap back .addBackPlane(-4, -4.5F, 0, 8, 1, stretch) .addFrontPlane(-4, -4.5F, 0, 8, 1, stretch) - .child(0).tex(56, 16).flipZ().addTopPlane(2, -5, -13, 8, 3, stretch) //left bag top - .flipZ().addTopPlane(2, -5, -2, 8, 3, stretch) //right bag top - .tex(56, 22).flipZ().addBottomPlane(2, 1, -13, 8, 3, stretch) //left bag bottom - .flipZ().addBottomPlane(2, 1, -2, 8, 3, stretch) //right bag bottom + .child(0).tex(56, 16).addTopPlane(2, -5, -13, 8, 3, stretch) //left bag top + .flipZ().addTopPlane(2, -5, -2, 8, 3, stretch) //right bag top + .tex(56, 22).addBottomPlane(2, 1, -13, 8, 3, stretch) //left bag bottom + .flipZ().addBottomPlane(2, 1, -2, 8, 3, stretch) //right bag bottom .rotateAngleY = 4.712389F; apron.offset(BODY_CENTRE_X, BODY_CENTRE_Y, BODY_CENTRE_Z)