From fbe268ec43e53d1a855406256af3cfc28a444453 Mon Sep 17 00:00:00 2001 From: frutescens Date: Sat, 28 Sep 2024 16:02:24 -0700 Subject: [PATCH] cursors are dumb --- 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 764e71a8c3f..77a248f7e68 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.getCursor() === Command.POKEMON) { + if (this.scene.currentBattle.turn <= 1 && !this.scene.currentBattle.started) { this.setCursor(Command.FIGHT); } else { this.setCursor(this.getCursor());