From 04045623a026d22527459a0caba5d73e59d9fc4a Mon Sep 17 00:00:00 2001 From: Matthew Olker Date: Mon, 20 May 2024 16:41:40 -0400 Subject: [PATCH] Update shiny event end to match discord announcement --- src/field/pokemon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 8e56d163141..8071b2c032e 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -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); }