Update shiny event end to match discord announcement

This commit is contained in:
Matthew Olker 2024-05-20 16:41:40 -04:00
parent 136afa6b00
commit 04045623a0
1 changed files with 1 additions and 1 deletions

View File

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