Using isSeen in more places

This commit is contained in:
Wlowscha 2025-03-29 00:35:14 +01:00
parent 0256116ade
commit 56ef489a7b
No known key found for this signature in database
GPG Key ID: 3C8F1AD330565D04

View File

@ -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("");