From 56ef489a7b5f9c59add24d1181032b1bd100a91a Mon Sep 17 00:00:00 2001 From: Wlowscha <54003515+Wlowscha@users.noreply.github.com> Date: Sat, 29 Mar 2025 00:35:14 +0100 Subject: [PATCH] Using isSeen in more places --- src/ui/pokedex-page-ui-handler.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ui/pokedex-page-ui-handler.ts b/src/ui/pokedex-page-ui-handler.ts index bf54ad6920f..f6eff28c7ee 100644 --- a/src/ui/pokedex-page-ui-handler.ts +++ b/src/ui/pokedex-page-ui-handler.ts @@ -2231,8 +2231,9 @@ export default class PokedexPageUiHandler extends MessageUiHandler { const ui = this.getUi(); const isFormCaught = this.isFormCaught(); + const isSeen = this.isSeen(); - if ((this.isCaught() && isFormCaught) || (this.speciesStarterDexEntry?.seenAttr && cursor === 5)) { + if ((this.isCaught() && isFormCaught) || isSeen) { ui.showText(this.menuDescriptions[cursor]); } else { ui.showText("");