Fixed wings rotating incorrectly for alicorns

This commit is contained in:
Sollace 2023-01-27 12:07:25 +00:00
parent 60ece0cb46
commit 4d0f02e791

View file

@ -19,7 +19,7 @@ public class AlicornModel<T extends LivingEntity> extends UnicornModel<T> implem
public void init(ModelContext context) { public void init(ModelContext context) {
super.init(context); super.init(context);
wings = context.findByName("wings"); wings = context.findByName("wings");
headRenderList.add(forPart(this::getWings).checked(this::canFly)); bodyRenderList.add(forPart(this::getWings).checked(this::canFly));
} }
@Override @Override