diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index a74eb7f9d20..6425336a284 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -2673,7 +2673,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { applyPreDefendAbAttrs(ReceivedMoveDamageMultiplierAbAttr, this, source, move, cancelled, simulated, damage); /** Additionally apply friend guard damage reduction if ally has it. */ - if (this.scene.currentBattle.double && this.getAlly().isActive()) { + if (this.scene.currentBattle.double && this.getAlly()?.isActive(true)) { applyPreDefendAbAttrs(FriendGuardAbAttr, this.getAlly(), source, move, cancelled, simulated, damage); } }