From bed98ad304b39dc8e37e836a762fd168024c8fe8 Mon Sep 17 00:00:00 2001 From: Flashfyre Date: Thu, 14 Mar 2024 18:09:40 -0400 Subject: [PATCH] Implement better solution to Fake Out issue --- src/phases.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phases.ts b/src/phases.ts index fa91b16d3..b1925937f 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -1152,7 +1152,7 @@ export class SwitchSummonPhase extends SummonPhase { const pokemon = this.getPokemon(); // Compensate for turn spent summoning - if (pokemon.scene.currentBattle.turn > 1) + if (pokemon.scene.currentBattle.turnCommands[this.fieldIndex]?.command === Command.POKEMON) pokemon.battleSummonData.turnCount--; if (this.batonPass && pokemon)