From 5c2ebef0431f5006bc1c74486bc7c5f0d78860f8 Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Tue, 29 Apr 2025 22:55:39 -0400 Subject: [PATCH] Update pokemon.ts Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/field/pokemon.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/field/pokemon.ts b/src/field/pokemon.ts index 3fc59ebdb40..914e4bb8255 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -865,7 +865,6 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { ); } if (this.getFusionSpeciesForm()) { - // TODO: why is fusionFormIndex using illusion if defined but fusionShiny/variant aren't? const fusionFormIndex = useIllusion && this.summonData.illusion ? this.summonData.illusion.fusionFormIndex : this.fusionFormIndex; const fusionShiny = !useIllusion && this.summonData.illusion?.basePokemon ? this.summonData.illusion.basePokemon.fusionShiny : this.fusionShiny; const fusionVariant = !useIllusion && this.summonData.illusion?.basePokemon ? this.summonData.illusion.basePokemon.fusionVariant : this.fusionVariant;