From 0240cd32dd4c039b312bdff4a2e12e13fcaa6830 Mon Sep 17 00:00:00 2001 From: Wlowscha <54003515+Wlowscha@users.noreply.github.com> Date: Wed, 23 Apr 2025 19:41:32 +0200 Subject: [PATCH] Removed log messages --- src/ui/pokedex-page-ui-handler.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ui/pokedex-page-ui-handler.ts b/src/ui/pokedex-page-ui-handler.ts index 1cb0963d25c..e90e23c8fd3 100644 --- a/src/ui/pokedex-page-ui-handler.ts +++ b/src/ui/pokedex-page-ui-handler.ts @@ -961,7 +961,6 @@ export default class PokedexPageUiHandler extends MessageUiHandler { const isFormCaught = (caughtAttr & globalScene.gameData.getFormAttr(formIndex ?? 0)) > 0n; - console.log(caughtAttr.toString(2), species.getFullUnlocksData().toString(2)); return isFormCaught; } @@ -1159,7 +1158,6 @@ export default class PokedexPageUiHandler extends MessageUiHandler { this.blockInput = false; } else { ui.revertMode().then(() => { - console.log("exitCallback", this.exitCallback); if (this.exitCallback instanceof Function) { const exitCallback = this.exitCallback; this.exitCallback = null; @@ -2467,7 +2465,6 @@ export default class PokedexPageUiHandler extends MessageUiHandler { const isFormCaught = this.isFormCaught(); const isFormSeen = this.isSeen(); - console.log("isCaught:", isFormCaught, "isSeen:", isFormSeen); this.shinyOverlay.setVisible(shiny ?? false); // TODO: is false the correct default? this.pokemonNumberText.setColor(this.getTextColor(shiny ? TextStyle.SUMMARY_GOLD : TextStyle.SUMMARY, false));