From 2b3894ba27d2713a12097665b68d058a08ed5359 Mon Sep 17 00:00:00 2001 From: Stophles <71789013+Stophles@users.noreply.github.com> Date: Fri, 5 Apr 2024 19:24:42 -0500 Subject: [PATCH] Changed spacing --- src/phases.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/phases.ts b/src/phases.ts index 672f44b45ae..24f13c87595 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -2024,8 +2024,9 @@ export class MovePhase extends BattlePhase { const doMove = () => { this.pokemon.lapseTags(BattlerTagLapseType.PRE_MOVE); + if (!this.followUp && this.canMove() && !this.cancelled) { - this.pokemon.lapseTags(BattlerTagLapseType.MOVE); + this.pokemon.lapseTags(BattlerTagLapseType.MOVE); } if (this.cancelled) { this.pokemon.pushMoveHistory({ move: Moves.NONE, result: MoveResult.FAIL });