diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 857f4a8b96b..5bc1b5b0f0f 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -331,7 +331,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { this.name = this.species.getName(this.formIndex); return; } - this.name = getFusedSpeciesName(this.species.getName(this.species), this.fusionSpecies.getName(Species)); + this.name = getFusedSpeciesName(this.species, this.fusionSpecies); if (this.battleInfo) { this.updateInfo(true); }