mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 16:24:23 +01:00
Fixed leg placement whilst flying (alicorns will still have held items lag behind them - I call it a feature)
This commit is contained in:
parent
a639afea59
commit
df36cf61fc
1 changed files with 6 additions and 0 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue