diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 4064dab8ed1..1ab3f503740 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -441,7 +441,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.loadAssets(false, true).then(() => this.playAnim()); } else { let availables: Species[] = []; - let randomIllusion: PokemonSpecies = this.scene.arena.randomSpecies(this.scene.currentBattle.waveIndex, this.level) + let randomIllusion: PokemonSpecies = this.scene.arena.randomSpecies(this.scene.currentBattle.waveIndex, this.level); if (this.isBoss()) { availables = [ Species.ENTEI, Species.RAIKOU, Species.SUICUNE ]; randomIllusion = getPokemonSpecies(availables[this.randSeedInt(availables.length)]);