Fixed model scaling

This commit is contained in:
Sollace 2019-07-01 21:12:18 +02:00
parent fd24ab3326
commit 88b2228314

View file

@ -691,7 +691,7 @@ public abstract class AbstractPonyModel<T extends LivingEntity> extends ClientPo
protected void renderStage(BodyPart part, float scale, Consumer<Float> action) {
pushMatrix();
transform(BodyPart.BODY);
transform(part);
action.accept(scale);
popMatrix();
}