From 10c4d4ef94e49d80a172e80d8c334b39437fe642 Mon Sep 17 00:00:00 2001 From: Wickedness Date: Sun, 5 Jul 2026 03:29:01 +0900 Subject: [PATCH] Dismiss battle turn prompts with escape --- src/game/scenes/BattleScene.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/game/scenes/BattleScene.ts b/src/game/scenes/BattleScene.ts index c782cd1..5e5579d 100644 --- a/src/game/scenes/BattleScene.ts +++ b/src/game/scenes/BattleScene.ts @@ -3190,6 +3190,12 @@ export class BattleScene extends Phaser.Scene { return; } + if (this.turnPromptObjects.length > 0) { + soundDirector.playSelect(); + this.hideTurnEndPrompt(); + return; + } + if (this.commandMenuObjects.length > 0) { soundDirector.playSelect(); this.hideCommandMenu();