From be41b1b988c0d490444f84b666630fb606fd7ad3 Mon Sep 17 00:00:00 2001 From: Wlowscha <54003515+Wlowscha@users.noreply.github.com> Date: Sat, 8 Feb 2025 23:06:36 +0100 Subject: [PATCH] Fixed position of pokemonFormText --- src/ui/pokedex-page-ui-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/pokedex-page-ui-handler.ts b/src/ui/pokedex-page-ui-handler.ts index 4f7b614d263..f1464361ab3 100644 --- a/src/ui/pokedex-page-ui-handler.ts +++ b/src/ui/pokedex-page-ui-handler.ts @@ -2264,7 +2264,7 @@ export default class PokedexPageUiHandler extends MessageUiHandler { // Form text if (isFormCaught || isFormSeen) { this.pokemonFormText.setVisible(true); - if (isFormSeen) { + if (!isFormCaught) { this.pokemonFormText.setY(18); } } else {