diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index d5b5a8c29c4..396369d329c 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -300,7 +300,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); }