Witches have a 1/300 chance of spawning as a foal. If you find one there is a 142% chance that it will be adorable

This commit is contained in:
Sollace 2018-08-18 16:17:21 +02:00
parent 50c7b373fc
commit 57902a7e62

View file

@ -30,6 +30,7 @@ public class ModelWitchPony extends ModelZebra {
super.updateLivingState(entity, pony);
EntityWitch witch = ((EntityWitch) entity);
isChild = entity.getUniqueID().getLeastSignificantBits() % 300 == 0;
leftArmPose = ArmPose.EMPTY;
rightArmPose = witch.getHeldItemMainhand().isEmpty() ? ArmPose.EMPTY : ArmPose.ITEM;
}