From adb6b7fc9ddc7af7f7eb72bf33707d2ac60b2dab Mon Sep 17 00:00:00 2001 From: Aurastic <33085835+ISenseAura@users.noreply.github.com> Date: Sun, 5 Oct 2025 22:47:20 +0530 Subject: [PATCH] Preact: Fix Ultra Burst bug in battle (#2534) --- play.pokemonshowdown.com/src/battle-choices.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/play.pokemonshowdown.com/src/battle-choices.ts b/play.pokemonshowdown.com/src/battle-choices.ts index e32155648..65f6ce4f2 100644 --- a/play.pokemonshowdown.com/src/battle-choices.ts +++ b/play.pokemonshowdown.com/src/battle-choices.ts @@ -527,6 +527,7 @@ export class BattleChoiceBuilder { (choice.mega ? ' mega' : '') + (choice.megax ? ' megax' : '') + (choice.megay ? ' megay' : '') + + (choice.ultra ? ' ultra' : '') + (choice.z ? ' zmove' : '') + (choice.tera ? ' terastallize' : ''); }