From 74fa79c8b0e316c59f6134b11a14285af4b770b8 Mon Sep 17 00:00:00 2001 From: Amatsune <48121978+amatsune@users.noreply.github.com> Date: Mon, 24 Jun 2024 14:30:34 +0200 Subject: [PATCH] Update src/field/pokemon.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> --- src/field/pokemon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }