Add missing @Override annotations

This commit is contained in:
Sollace 2018-08-15 17:12:06 +02:00
parent 57206213c5
commit f0453844a0

View file

@ -42,24 +42,29 @@ public class ModelSkeletonPony extends ModelMobPony {
super.setLivingAnimations(entity, move, swing, ticks); super.setLivingAnimations(entity, move, swing, ticks);
} }
@Override
protected float getLegOutset() { protected float getLegOutset() {
if (isSleeping()) return 2.6f; if (isSleeping()) return 2.6f;
if (isCrouching()) return 0; if (isCrouching()) return 0;
return 4; return 4;
} }
@Override
protected int getArmWidth() { protected int getArmWidth() {
return 2; return 2;
} }
@Override
protected int getArmDepth() { protected int getArmDepth() {
return 2; return 2;
} }
@Override
protected float getLegRotationX() { protected float getLegRotationX() {
return 3; return 3;
} }
@Override
protected float getArmRotationY() { protected float getArmRotationY() {
return 8; return 8;
} }