From 7ea2d3a4cd093cfe6c3450c2f9e5cc37e07fe786 Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Sat, 14 Jun 2025 22:43:31 -0500 Subject: [PATCH] Apply biome formatting --- src/phases/evolution-phase.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/phases/evolution-phase.ts b/src/phases/evolution-phase.ts index c0ed0d7590a..8e4300986b3 100644 --- a/src/phases/evolution-phase.ts +++ b/src/phases/evolution-phase.ts @@ -411,11 +411,7 @@ export class EvolutionPhase extends Phase { .getLevelMoves(this.lastLevel + 1, true, false, false, learnSituation) .filter(lm => lm[0] === EVOLVE_MOVE); for (const lm of levelMoves) { - globalScene.phaseManager.unshiftNew( - "LearnMovePhase", - globalScene.getPlayerParty().indexOf(this.pokemon), - lm[1], - ); + globalScene.phaseManager.unshiftNew("LearnMovePhase", globalScene.getPlayerParty().indexOf(this.pokemon), lm[1]); } globalScene.phaseManager.unshiftNew("EndEvolutionPhase");