From de6946350aa787e785fb4803d2048988fabbed5c Mon Sep 17 00:00:00 2001 From: frutescens Date: Tue, 15 Oct 2024 17:27:07 -0700 Subject: [PATCH] update --- src/ui/command-ui-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/command-ui-handler.ts b/src/ui/command-ui-handler.ts index 70b1ffa6a60..4b78a2a6112 100644 --- a/src/ui/command-ui-handler.ts +++ b/src/ui/command-ui-handler.ts @@ -68,7 +68,7 @@ export default class CommandUiHandler extends UiHandler { messageHandler.movesWindowContainer.setVisible(false); messageHandler.message.setWordWrapWidth(1110); messageHandler.showText(i18next.t("commandUiHandler:actionMessage", { pokemonName: getPokemonNameWithAffix(commandPhase.getPokemon()) }), 0); - if (this.scene.currentBattle.turn <= 1 && !this.scene.currentBattle.started) { + if ((this.scene.currentBattle.turn <= 1 && !this.scene.currentBattle.started) || this.getCursor() === Command.POKEMON) { this.setCursor(Command.FIGHT); } else { this.setCursor(this.getCursor());