fix isGrounded check

This commit is contained in:
LaukkaE 2024-05-12 14:28:34 +03:00
parent e1ef3c03de
commit 76b2963894

View File

@ -940,7 +940,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
}
isGrounded(): boolean {
return !this.isOfType(Type.FLYING, true) && this.getAbility().id !== Abilities.LEVITATE && !!this.getTag(BattlerTagType.GROUNDED);
return !this.isOfType(Type.FLYING, true) && this.hasAbility(Abilities.LEVITATE);
}
getAttackMoveEffectiveness(source: Pokemon, move: PokemonMove): TypeDamageMultiplier {