From 29f884803aad730c978b0c562d177c588205ead3 Mon Sep 17 00:00:00 2001 From: innerthunder Date: Sun, 13 Oct 2024 10:46:22 -0700 Subject: [PATCH] Add `moveName` key arg for other languages --- 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 0f6d238ef6a..4af9f2464d4 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -856,7 +856,7 @@ export class PowderTag extends BattlerTag { } // "When the flame touched the powder\non the Pokémon, it exploded!" - pokemon.scene.queueMessage(i18next.t("battlerTags:powderLapse")); + pokemon.scene.queueMessage(i18next.t("battlerTags:powderLapse", { moveName: move.name })); } } return true;