mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-24 15:56:22 +00:00
Update src/system/game-stats.ts
Co-authored-by: flx-sta <50131232+flx-sta@users.noreply.github.com>
This commit is contained in:
parent
834844978e
commit
a44a3a1f2e
@ -58,9 +58,9 @@ export class GameStats {
|
||||
this.pokemonCaught = source?.pokemonCaught || 0;
|
||||
this.pokemonHatched = source?.pokemonHatched || 0;
|
||||
// Currently handled by migration
|
||||
this.subLegendaryPokemonSeen = source?.subLegendaryPokemonSeen || 0;
|
||||
this.subLegendaryPokemonCaught = source?.subLegendaryPokemonCaught || 0;
|
||||
this.subLegendaryPokemonHatched = source?.subLegendaryPokemonHatched || 0;
|
||||
this.subLegendaryPokemonSeen = source?.subLegendaryPokemonSeen ?? 0;
|
||||
this.subLegendaryPokemonCaught = source?.subLegendaryPokemonCaught ?? 0;
|
||||
this.subLegendaryPokemonHatched = source?.subLegendaryPokemonHatched ?? 0;
|
||||
this.legendaryPokemonSeen = source?.legendaryPokemonSeen || 0;
|
||||
this.legendaryPokemonCaught = source?.legendaryPokemonCaught || 0;
|
||||
this.legendaryPokemonHatched = source?.legendaryPokemonHatched || 0;
|
||||
|
Loading…
Reference in New Issue
Block a user