mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-18 23:11:11 +00:00
Fix master ball not working properly
This commit is contained in:
parent
eedad7d678
commit
f029f450fe
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user