From 377f5967782fd1764ef51b82c86f8f2743ea26d4 Mon Sep 17 00:00:00 2001 From: Dobin Shin <34051876+Gamez0@users.noreply.github.com> Date: Fri, 6 Jun 2025 03:06:51 +0900 Subject: [PATCH] Apply lint Co-authored-by: Bertie690 <136088738+Bertie690@users.noreply.github.com> --- src/data/abilities/ability.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/data/abilities/ability.ts b/src/data/abilities/ability.ts index 836c4213928..4590592fd20 100644 --- a/src/data/abilities/ability.ts +++ b/src/data/abilities/ability.ts @@ -2131,11 +2131,11 @@ export class PostIntimidateStatStageChangeAbAttr extends AbAttr { override apply(pokemon: Pokemon, passive: boolean, simulated:boolean, cancelled: BooleanHolder, args: any[]): void { if (!simulated) { const newStatStageChangePhase = new StatStageChangePhase(pokemon.getBattlerIndex(), false, this.stats, this.stages) - if(globalScene.findPhase(m => m instanceof MovePhase)){ + if (globalScene.findPhase(m => m instanceof MovePhase)) { globalScene.prependToPhase(newStatStageChangePhase, MovePhase) - } else if(globalScene.findPhase(m => m instanceof SwitchSummonPhase)){ + } else if (globalScene.findPhase(m => m instanceof SwitchSummonPhase)) { globalScene.prependToPhase(newStatStageChangePhase, SwitchSummonPhase) - }else { + } else { globalScene.pushPhase(newStatStageChangePhase); } }