change flying npc players not permananetly flying

This commit is contained in:
Sen 2025-05-18 20:18:44 +02:00
parent 89d2c8f6e4
commit a7fe2db49f

View file

@ -49,6 +49,10 @@ public abstract class EntityFlyingNPC extends EntityNPC
}
public boolean isFlying() {
return !this.isPlayer() || super.isFlying();
}
public boolean canNaturallyFly() {
return true;
}