From 3c7242d747b56416d6353cb67e303c76363db0c9 Mon Sep 17 00:00:00 2001 From: Jimmybald1 <122436263+Jimmybald1@users.noreply.github.com> Date: Thu, 20 Nov 2025 18:56:51 +0100 Subject: [PATCH] [Bug][Balance] Actual correct minimum waves for Legends in Daily Mode (#6786) Added true for ignoreCurveChanges Co-authored-by: Jimmybald1 <147992650+IBBCalc@users.noreply.github.com> --- src/field/arena.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/field/arena.ts b/src/field/arena.ts index b4d993314c4..dc209226211 100644 --- a/src/field/arena.ts +++ b/src/field/arena.ts @@ -184,7 +184,7 @@ export class Arena { ret = getPokemonSpecies(species!); if (ret.subLegendary || ret.legendary || ret.mythical) { - const waveDifficulty = globalScene.gameMode.getWaveForDifficulty(waveIndex); + const waveDifficulty = globalScene.gameMode.getWaveForDifficulty(waveIndex, true); if (ret.baseTotal >= 660) { regen = waveDifficulty < 80; // Wave 50+ in daily (however, max Daily wave is 50 currently so not possible) } else {