diff --git a/src/pokemon.ts b/src/pokemon.ts index 9df362391c6..5184f6f77b9 100644 --- a/src/pokemon.ts +++ b/src/pokemon.ts @@ -986,7 +986,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { if (this.fusionSpecies) return this.fusionFaintCry(callback); - const key = this.getSpeciesForm().getCryKey(); + const key = this.getSpeciesForm().getCryKey(this.formIndex); let i = 0; let rate = 0.85; const cry = this.scene.playSound(key, { rate: rate }) as AnySound;