From c85033a0c3b4f05949d1fcb799e60f1e4b6c91c7 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Wed, 4 Sep 2024 13:10:17 -0700 Subject: [PATCH] Fix indentation --- src/data/move.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/move.ts b/src/data/move.ts index f7db614f7ba..c97c46e9b35 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -7985,7 +7985,7 @@ export function initMoves() { const lastEnemyFaint = user.scene.currentBattle.enemyFaintsHistory[user.scene.currentBattle.enemyFaintsHistory.length -1]; return ( lastPlayerFaint !== undefined && turn - lastPlayerFaint.turn === 1 && user.isPlayer() || - lastEnemyFaint !== undefined && turn - lastEnemyFaint.turn === 1 && !user.isPlayer() + lastEnemyFaint !== undefined && turn - lastEnemyFaint.turn === 1 && !user.isPlayer() ) ? 2 : 1; }), new AttackMove(Moves.FINAL_GAMBIT, Type.FIGHTING, MoveCategory.SPECIAL, -1, 100, 5, -1, 0, 5)