From 4fcea107abb4fa5332ed032b3c996e72ed7ece55 Mon Sep 17 00:00:00 2001 From: Tempoanon <163687446+TempsRay@users.noreply.github.com> Date: Tue, 7 May 2024 13:10:48 -0400 Subject: [PATCH] Fix wrong stat displayed for mythicals hatched (#601) --- src/system/game-stats.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/game-stats.ts b/src/system/game-stats.ts index c67bd6d23..4c3f40e5d 100644 --- a/src/system/game-stats.ts +++ b/src/system/game-stats.ts @@ -66,7 +66,7 @@ export class GameStats { this.legendaryPokemonHatched = source?.legendaryPokemonHatched || 0; this.mythicalPokemonSeen = source?.mythicalPokemonSeen || 0; this.mythicalPokemonCaught = source?.mythicalPokemonCaught || 0; - this.mythicalPokemonHatched = source?.mythicalPokemonCaught || 0; + this.mythicalPokemonHatched = source?.mythicalPokemonHatched || 0; this.shinyPokemonSeen = source?.shinyPokemonSeen || 0; this.shinyPokemonCaught = source?.shinyPokemonCaught || 0; this.shinyPokemonHatched = source?.shinyPokemonHatched || 0;