From fd10cd8080a894aabbc46a6375c7dd052135ffa6 Mon Sep 17 00:00:00 2001 From: Flashfyre Date: Thu, 29 Feb 2024 09:58:07 -0500 Subject: [PATCH] Fix master balls not working --- src/phases.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phases.ts b/src/phases.ts index f888feb3b..91a548b0a 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -1432,7 +1432,7 @@ export class CommandPhase extends FieldPhase { this.scene.ui.showText(null, 0); this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex); }, null, true); - } else if (cursor < 4) { + } else if (cursor < 5) { const targetPokemon = this.scene.getEnemyField().find(p => p.isActive(true)); if (targetPokemon.isBoss() && targetPokemon.bossSegmentIndex) { this.scene.ui.setMode(Mode.COMMAND, this.fieldIndex);