Fixed leg placement whilst flying (alicorns will still have held items lag behind them - I call it a feature)

This commit is contained in:
Sollace 2018-05-01 21:30:10 +02:00
parent a639afea59
commit df36cf61fc

View file

@ -56,6 +56,12 @@ public class ModelPegasus extends ModelEarthPony implements IModelPegasus {
} }
} }
protected void holdItem(float swing) {
if (!rainboom) {
super.holdItem(swing);
}
}
@Override @Override
protected void renderBody(Entity entity, float move, float swing, float ticks, float headYaw, float headPitch, float scale) { protected void renderBody(Entity entity, float move, float swing, float ticks, float headYaw, float headPitch, float scale) {
super.renderBody(entity, move, swing, ticks, headYaw, headPitch, scale); super.renderBody(entity, move, swing, ticks, headYaw, headPitch, scale);