From 7400ba0503aa93250c45dd10d99a56c74163de7d Mon Sep 17 00:00:00 2001 From: Flashfyre Date: Wed, 3 Apr 2024 09:23:45 -0400 Subject: [PATCH] Update IVs in dex on evolution --- src/field/pokemon.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 615fd786e..0317d30d2 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -2115,6 +2115,7 @@ export class PlayerPokemon extends Pokemon { }); }; if (!this.scene.gameMode.isDaily || this.metBiome > -1) { + this.scene.gameData.updateSpeciesDexIvs(this.species.speciesId, this.ivs); this.scene.gameData.setPokemonSeen(this, false); this.scene.gameData.setPokemonCaught(this, false).then(() => updateAndResolve()); } else