Update WrapperLivingEntity.java

This commit is contained in:
Tofaa 2024-02-23 13:14:20 +04:00
parent 6d151fdec0
commit 24b2a96d11

View file

@ -17,6 +17,12 @@ public class WrapperLivingEntity extends WrapperEntity{
this.equipment = new WrapperEntityEquipment(this);
}
@Override
public void refresh() {
super.refresh();
equipment.refresh();
}
public void playCriticalHitAnimation() {
sendAnimation(WrapperPlayServerEntityAnimation.EntityAnimationType.CRITICAL_HIT);
}