From 5c1c0d1a2103d32973609cd3db4c055ef4e18148 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Tue, 10 Sep 2024 14:33:07 +0200 Subject: [PATCH] Update pokemon-info-container.ts --- src/ui/pokemon-info-container.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/pokemon-info-container.ts b/src/ui/pokemon-info-container.ts index ffdd8f6cdbc..371bf44759e 100644 --- a/src/ui/pokemon-info-container.ts +++ b/src/ui/pokemon-info-container.ts @@ -235,7 +235,7 @@ export default class PokemonInfoContainer extends Phaser.GameObjects.Container { this.pokemonGenderText.setVisible(false); } - if (pokemon.species.forms?.[pokemon.formIndex]?.formName && pokemon.species.forms?.[pokemon.formIndex]?.formName !== "Normal") { + if (pokemon.species.forms?.[pokemon.formIndex]?.formName) { this.pokemonFormLabelText.setVisible(true); this.pokemonFormText.setVisible(true); const newForm = BigInt(1 << pokemon.formIndex) * DexAttr.DEFAULT_FORM;