From 4201bc807e57cb680066c15b237ded6366222695 Mon Sep 17 00:00:00 2001 From: Benjamin Odom Date: Sun, 12 May 2024 06:10:45 -0500 Subject: [PATCH] Revert "added battle tag check in isGrounded method (#750)" This reverts commit d5f82611f54adbe87bd2daa0644e0d5a44591cf4. --- src/field/pokemon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 619cedb4a..1ed209c9a 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -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 {