Extend the temporary shiny chance increase by 1 day

pull/714/head
Flashfyre 2024-05-09 20:16:29 -04:00
parent 02cba0f741
commit 2bc1cfb0fc
1 changed files with 1 additions and 1 deletions

View File

@ -1054,7 +1054,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
let shinyThreshold = new Utils.IntegerHolder(32); let shinyThreshold = new Utils.IntegerHolder(32);
if (thresholdOverride === undefined) { if (thresholdOverride === undefined) {
if (!this.hasTrainer()) { if (!this.hasTrainer()) {
if (new Date() < new Date('2024-05-12')) if (new Date() < new Date('2024-05-13'))
shinyThreshold.value *= 3; shinyThreshold.value *= 3;
this.scene.applyModifiers(ShinyRateBoosterModifier, true, shinyThreshold); this.scene.applyModifiers(ShinyRateBoosterModifier, true, shinyThreshold);
} }