Fix softlock with wild switch out moves

pull/16/head
Flashfyre 2024-03-07 00:04:38 -05:00
parent 7efd8aa834
commit 2ce74716f7
1 changed files with 1 additions and 1 deletions

View File

@ -2806,7 +2806,7 @@ export class VictoryPhase extends PokemonPhase {
}
}
if (!this.scene.getEnemyParty().filter(p => !p?.isFainted(true)).length) {
if (!this.scene.getEnemyParty().find(p => this.scene.currentBattle.battleType ? !p?.isFainted(true) : p.isActive(true))) {
this.scene.pushPhase(new BattleEndPhase(this.scene));
if (this.scene.currentBattle.battleType === BattleType.TRAINER)
this.scene.pushPhase(new TrainerVictoryPhase(this.scene));