From 979782c8f8a208cfc9ef6dbfc6d4160adaad6c30 Mon Sep 17 00:00:00 2001 From: Sollace Date: Sun, 3 Jun 2018 17:30:53 +0200 Subject: [PATCH] guess ponies still have to block with a bow, even if their arms bust through the front... --- .../minelittlepony/model/AbstractPonyModel.java | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/main/java/com/minelittlepony/model/AbstractPonyModel.java b/src/main/java/com/minelittlepony/model/AbstractPonyModel.java index fd29a75b..f06b213c 100644 --- a/src/main/java/com/minelittlepony/model/AbstractPonyModel.java +++ b/src/main/java/com/minelittlepony/model/AbstractPonyModel.java @@ -344,14 +344,12 @@ public abstract class AbstractPonyModel extends ModelPlayer implements IModel { arm.rotateAngleY = 0; break; case BLOCK: - if (complement != ArmPose.BOW_AND_ARROW) { - arm.rotateAngleX = (arm.rotateAngleX / 2 - 0.9424779F) - 0.3F; - arm.rotateAngleY = reflect * PI / 9; - arm.rotationPointX += reflect; - arm.rotationPointZ += 3; - if (isSneak) { - arm.rotationPointY += 4; - } + arm.rotateAngleX = (arm.rotateAngleX / 2 - 0.9424779F) - 0.3F; + arm.rotateAngleY = reflect * PI / 9; + arm.rotationPointX += reflect; + arm.rotationPointZ += 3; + if (isSneak) { + arm.rotationPointY += 4; } break; case BOW_AND_ARROW: