From ca8ad3cec0dfb1344e9baec8c024660494998e60 Mon Sep 17 00:00:00 2001 From: Wlowscha <54003515+Wlowscha@users.noreply.github.com> Date: Sun, 2 Feb 2025 00:38:02 +0100 Subject: [PATCH] Fixing comments --- 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 e523e2eed9e..92c1e0ee569 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -1272,7 +1272,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { let secondType: Type | null = null; if (fusionSpeciesForm) { - // Check if the fusion Pokemon also had permanently changes when determining the fusion types + // Check if the fusion Pokemon also has permanent changes from ME when determining the fusion types const fusionType1 = (this.fusionCustomPokemonData?.types && this.fusionCustomPokemonData.types.length > 0 && this.fusionCustomPokemonData.types[0] !== Type.UNKNOWN) ? this.fusionCustomPokemonData.types[0] : fusionSpeciesForm.type1; const fusionType2 = (this.fusionCustomPokemonData?.types && this.fusionCustomPokemonData.types.length > 1 && this.fusionCustomPokemonData.types[1] !== Type.UNKNOWN)