diff --git a/src/phases.ts b/src/phases.ts index 92c64545c5f..f9d0dd09b54 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -1568,6 +1568,11 @@ export class EncounterPhase extends BattlePhase { } if (this.scene.currentBattle.waveIndex == 1) { LoggerTools.logPlayerTeam(this.scene) + if (this.scene.gameMode.modeId == GameModes.DAILY && this.scene.disableDailyShinies) { + this.scene.getParty().forEach(p => { + p.species.luckOverride = 0; // Disable shiny luck for party members + }) + } } LoggerTools.resetWaveActions(this.scene, undefined, true)