From d2ebb499d8790d8610dd63e67b2dd901eb85d7eb Mon Sep 17 00:00:00 2001 From: Matthew Olker Date: Fri, 12 Apr 2024 07:44:45 -0400 Subject: [PATCH] Fix broken call in force switch out --- src/data/move.ts | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/data/move.ts b/src/data/move.ts index ddc9563554b..a0f1a93118a 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -2511,10 +2511,8 @@ export class ForceSwitchOutAttr extends MoveEffectAttr { return new Promise(resolve => { // Check if the move category is not STATUS or if the switch out condition is not met if (move.category !== MoveCategory.STATUS && !this.getSwitchOutCondition()(user, target, move)) { - //Apply effects that need to be executed before switch out - //For example, applying poison or any other status condition - applyPostDefendAbAttrs(PostDefendContactApplyStatusEffectAbAttr, target, user, move); - //Resolve the Promise after the switch out is complete + //Apply effects before switch out i.e. poison point, flame body, etc + applyPostDefendAbAttrs(PostDefendContactApplyStatusEffectAbAttr, target, user, new PokemonMove(move.id), null); return resolve(false); } @@ -2522,8 +2520,6 @@ export class ForceSwitchOutAttr extends MoveEffectAttr { // This ensures that the switch out only happens when the conditions are met const switchOutTarget = this.user ? user : target; if (switchOutTarget instanceof PlayerPokemon) { - // Switch out logic for PlayerPokemon - // This includes applying any necessary effects before switching out if (switchOutTarget.hp) { applyPreSwitchOutAbAttrs(PreSwitchOutAbAttr, switchOutTarget); (switchOutTarget as PlayerPokemon).switchOut(this.batonPass, true).then(() => resolve(true)); @@ -2546,7 +2542,7 @@ export class ForceSwitchOutAttr extends MoveEffectAttr { user.scene.unshiftPhase(new SwitchSummonPhase(user.scene, switchOutTarget.getFieldIndex(), user.scene.currentBattle.trainer.getNextSummonIndex((switchOutTarget as EnemyPokemon).trainerSlot), false, this.batonPass, false)); } else { - // Switch out logic for everything else + // Switch out logic for everything else switchOutTarget.setVisible(false); if (switchOutTarget.hp) {