Revert "Add temporary double wild shiny chance"

This reverts commit 4607782578.
pull/337/head
Flashfyre 2024-04-28 20:30:12 -04:00
parent 21482a641b
commit 0b438d0ff4
1 changed files with 1 additions and 4 deletions

View File

@ -997,11 +997,8 @@ 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('4/29/2024'))
shinyThreshold.value *= 2;
if (!this.hasTrainer())
this.scene.applyModifiers(ShinyRateBoosterModifier, true, shinyThreshold);
}
} else
shinyThreshold.value = thresholdOverride;