diff --git a/src/battle-phases.ts b/src/battle-phases.ts index 395c4dd9f..a664f27ae 100644 --- a/src/battle-phases.ts +++ b/src/battle-phases.ts @@ -3070,7 +3070,7 @@ export class AttemptCapturePhase extends PokemonPhase { shakeCounter.stop(); this.failCatch(shakeCount); } else if (shakeCount++ < 3) { - if (pokemon.randSeedInt(65536) < y) + if (pokeballMultiplier === -1 || pokemon.randSeedInt(65536) < y) this.scene.playSound('pb_move'); else { shakeCounter.stop();