From 3829a7fb990e72932a35b46d6e8a63dc2536e620 Mon Sep 17 00:00:00 2001 From: Michael Li Date: Fri, 30 Aug 2024 23:16:51 -0400 Subject: [PATCH] Revert egg's ID back to its own unseeded generation --- src/data/egg.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/egg.ts b/src/data/egg.ts index b6ceca40bec..9beb944de69 100644 --- a/src/data/egg.ts +++ b/src/data/egg.ts @@ -151,7 +151,7 @@ export class Egg { this.checkForPityTierOverrides(eggOptions.scene!); // TODO: is this bang correct? } - this._id = eggOptions?.id ?? Utils.randSeedInt(EGG_SEED, EGG_SEED * this._tier); + this._id = eggOptions?.id ?? Utils.randInt(EGG_SEED, EGG_SEED * this._tier); this._sourceType = eggOptions?.sourceType ?? undefined; this._hatchWaves = eggOptions?.hatchWaves ?? this.getEggTierDefaultHatchWaves();