From 5f0c0a793cef215d4557e220cd7b8874ef5663c8 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Mon, 16 Jun 2025 05:16:15 -0700 Subject: [PATCH] Apply Biome --- src/field/pokemon.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index ea6ae2d486e..24399504eba 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -2790,11 +2790,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { if (timedEventManager.isEventActive()) { shinyThreshold.value *= timedEventManager.getShinyMultiplier(); } - globalScene.applyModifiers( - ShinyRateBoosterModifier, - true, - shinyThreshold, - ); + globalScene.applyModifiers(ShinyRateBoosterModifier, true, shinyThreshold); } this.shiny = randSeedInt(65536) < shinyThreshold.value;