mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-15 06:15:20 +01:00
[i18n] Fix message for unimplemented moves (#6780)
Fix message for unimplemented moves
This commit is contained in:
parent
349b552eb1
commit
bb86b649d8
@ -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()) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user