Fix prevolution levels evolved form key check for default form

This commit is contained in:
Flashfyre 2024-03-20 17:04:09 -04:00
parent c1cce43daf
commit 832da738ab
1 changed files with 1 additions and 1 deletions

View File

@ -524,7 +524,7 @@ export default class PokemonSpecies extends PokemonSpeciesForm {
const allEvolvingPokemon = Object.keys(pokemonEvolutions); const allEvolvingPokemon = Object.keys(pokemonEvolutions);
for (let p of allEvolvingPokemon) { for (let p of allEvolvingPokemon) {
for (let e of pokemonEvolutions[p]) { for (let e of pokemonEvolutions[p]) {
if (e.speciesId === this.speciesId && (!this.forms.length || e.evoFormKey === this.forms[this.formIndex].formKey)) { if (e.speciesId === this.speciesId && (!this.forms.length || (e.evoFormKey || '') === this.forms[this.formIndex].formKey)) {
const speciesId = parseInt(p) as Species; const speciesId = parseInt(p) as Species;
let level = e.level; let level = e.level;
prevolutionLevels.push([ speciesId, level ]); prevolutionLevels.push([ speciesId, level ]);