From 7ae1fa66714bc747692e8a0743ba3d00e935b35c Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Tue, 6 Jan 2026 21:04:40 +1100 Subject: [PATCH] Fix bug where when starting the game hp/exp bar and quick slot items wouldnt be rendered until after first move --- src/ui/GameUI.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ui/GameUI.ts b/src/ui/GameUI.ts index 831bb7b..031da59 100644 --- a/src/ui/GameUI.ts +++ b/src/ui/GameUI.ts @@ -79,6 +79,9 @@ export default class GameUI extends Phaser.Scene { gameScene.events.on("restart-game", () => { this.death.hide(); }); + + // Request initial state update + gameScene.events.emit("request-ui-update"); } private emitMenuStates() {