From afe70453b12fcd4805611a10b4ebd5d8e9680d32 Mon Sep 17 00:00:00 2001 From: Enoch Date: Thu, 20 Jun 2024 00:34:17 +0900 Subject: [PATCH] [hotfix] fix message when helping hand (#2410) --- src/data/battler-tags.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index 3413a6e43d3..4e2a4e06d3c 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -572,7 +572,7 @@ export class HelpingHandTag extends BattlerTag { onAdd(pokemon: Pokemon): void { pokemon.scene.queueMessage( i18next.t("battle:battlerTagsHelpingHandOnAdd", { - pokemonNameWithAffix: pokemon.scene.getPokemonById(this.sourceId), + pokemonNameWithAffix: getPokemonNameWithAffix(pokemon.scene.getPokemonById(this.sourceId)), pokemonName: pokemon.name }) );