Fix master ball not working properly

This commit is contained in:
Flashfyre 2024-01-07 23:50:11 -05:00
parent eedad7d678
commit f029f450fe
1 changed files with 1 additions and 1 deletions

View File

@ -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();