Revert "added battle tag check in isGrounded method (#750)"

This reverts commit d5f82611f5.
pull/772/head
Benjamin Odom 2024-05-12 06:10:45 -05:00 committed by GitHub
parent e1ef3c03de
commit 4201bc807e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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.getAbility().id !== Abilities.LEVITATE;
}
getAttackMoveEffectiveness(source: Pokemon, move: PokemonMove): TypeDamageMultiplier {