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();