From bb86b649d8cd284ecc8767d183d157adefd67ccc Mon Sep 17 00:00:00 2001 From: Fabi <192151969+fabske0@users.noreply.github.com> Date: Sat, 15 Nov 2025 19:14:48 +0100 Subject: [PATCH] [i18n] Fix message for unimplemented moves (#6780) Fix message for unimplemented moves --- src/data/moves/pokemon-move.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/moves/pokemon-move.ts b/src/data/moves/pokemon-move.ts index bccb842945e..1d8f4d8e823 100644 --- a/src/data/moves/pokemon-move.ts +++ b/src/data/moves/pokemon-move.ts @@ -55,7 +55,7 @@ export class PokemonMove { // TODO: Add Sky Drop's 1 turn stall if (this.moveId === MoveId.NONE || move.name.endsWith(" (N)")) { - return [false, i18next.t("battle:moveNotImplemented", moveName.replace(" (N)", ""))]; + return [false, i18next.t("battle:moveNotImplemented", { moveName: moveName.replace(" (N)", "") })]; } if (!ignorePp && move.pp !== -1 && this.ppUsed >= this.getMovePp()) {