From 8b3f050a62f5368c4dac05458b95794dbed45f23 Mon Sep 17 00:00:00 2001 From: Moka <54149968+MokaStitcher@users.noreply.github.com> Date: Wed, 12 Feb 2025 19:19:04 +0100 Subject: [PATCH] Fix 'can't release your only pokemon' message (#654) --- public/locales | 2 +- src/ui/party-ui-handler.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/locales b/public/locales index e1b3a7c70..45038dd12 160000 --- a/public/locales +++ b/public/locales @@ -1 +1 @@ -Subproject commit e1b3a7c7002d03858d057ebf44a781b4243556b1 +Subproject commit 45038dd12a44801d3b830230f9b691dbbb383d71 diff --git a/src/ui/party-ui-handler.ts b/src/ui/party-ui-handler.ts index 1052fc70f..94569fc79 100644 --- a/src/ui/party-ui-handler.ts +++ b/src/ui/party-ui-handler.ts @@ -1154,7 +1154,7 @@ export default class PartyUiHandler extends MessageUiHandler { true, ); } else { - this.showText(i18next.t("partyUihandler:cannotReleasePokemon"), null, () => this.showText("", 0), null, true); + this.showText(i18next.t("partyUiHandler:cannotReleasePokemon"), null, () => this.showText("", 0), null, true); } }