From fdb33ce48a66a30d22239c6554603f5c3f0812b6 Mon Sep 17 00:00:00 2001 From: Wlowscha <54003515+Wlowscha@users.noreply.github.com> Date: Sat, 1 Feb 2025 18:20:46 +0100 Subject: [PATCH] Fixed another typo --- src/field/pokemon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index e35336c6e15..cf42260b47a 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -1287,7 +1287,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { } else { // If not a fusion, just get the second type from the species, checking for overrides secondType = (overrideTypes && this.customPokemonData.types.length > 1 && this.customPokemonData.types[1] !== Type.UNKNOWN) - ? this.customPokemonData.types[0] : speciesForm.type2; + ? this.customPokemonData.types[1] : speciesForm.type2; } if (secondType) {