From f0453844a0fdeaa5dd77470584e76fd404c18fe7 Mon Sep 17 00:00:00 2001 From: Sollace Date: Wed, 15 Aug 2018 17:12:06 +0200 Subject: [PATCH] Add missing @Override annotations --- .../com/minelittlepony/model/ponies/ModelSkeletonPony.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/com/minelittlepony/model/ponies/ModelSkeletonPony.java b/src/main/java/com/minelittlepony/model/ponies/ModelSkeletonPony.java index 7c06a29e..f0ac7541 100644 --- a/src/main/java/com/minelittlepony/model/ponies/ModelSkeletonPony.java +++ b/src/main/java/com/minelittlepony/model/ponies/ModelSkeletonPony.java @@ -42,24 +42,29 @@ public class ModelSkeletonPony extends ModelMobPony { super.setLivingAnimations(entity, move, swing, ticks); } + @Override protected float getLegOutset() { if (isSleeping()) return 2.6f; if (isCrouching()) return 0; return 4; } + @Override protected int getArmWidth() { return 2; } + @Override protected int getArmDepth() { return 2; } + @Override protected float getLegRotationX() { return 3; } + @Override protected float getArmRotationY() { return 8; }