From 274b63e5820539e575dd22c234864197f8a6dfcb Mon Sep 17 00:00:00 2001 From: Lylian Date: Thu, 17 Apr 2025 17:09:45 +0200 Subject: [PATCH] nit --- 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 1d6da25f647..b965474de76 100644 --- a/src/field/pokemon.ts +++ b/src/field/pokemon.ts @@ -1099,7 +1099,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { /** * @param {boolean} useIllusion - Whether we want the speciesForm of the illusion or not. */ - getSpeciesForm(ignoreOverride?: boolean, useIllusion: boolean = false, cry: boolean = false): PokemonSpeciesForm { + getSpeciesForm(ignoreOverride?: boolean, useIllusion: boolean = false): PokemonSpeciesForm { const species: PokemonSpecies = useIllusion && !!this.summonData?.illusion ? getPokemonSpecies(this.summonData?.illusion.species) : this.species; const formIndex: integer = useIllusion && !!this.summonData?.illusion ? this.summonData?.illusion.formIndex : this.formIndex;