Fixes manaphy egg rate back to 1/256 (#2182)

This commit is contained in:
sirzento 2024-06-14 00:06:29 +02:00 committed by GitHub
parent f0072082b5
commit 0adddc4aea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ export class Egg {
}
isManaphyEgg(): boolean {
return this.tier === EggTier.COMMON && !(this.id % 255);
return this.tier === EggTier.COMMON && !(this.id % 204);
}
getKey(): string {