This commit is contained in:
Sollace 2020-05-15 13:48:29 +02:00
parent a50d318065
commit 23d055aaa9

View file

@ -18,7 +18,7 @@ public class ZomponyModel<Zombie extends HostileEntity> extends AlicornModel<Zom
@Override
public void animateModel(Zombie entity, float move, float swing, float ticks) {
super.animateModel(entity, move, swing, ticks);
isPegasus = true;//entity.getUuid().getLeastSignificantBits() % 30 == 0;
isPegasus = entity.getUuid().getLeastSignificantBits() % 30 == 0;
}
@Override