From 076ef81691984df94d78212866145c505d221baa Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Wed, 13 Aug 2025 20:49:46 -0500 Subject: [PATCH] [Bug] [UI/UX] [Beta] Fix icons not showing in save slot selection (#6262) Fix icons not showing in save slot selection --- src/ui/save-slot-select-ui-handler.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/ui/save-slot-select-ui-handler.ts b/src/ui/save-slot-select-ui-handler.ts index c86f2ea66bf..52e145e6439 100644 --- a/src/ui/save-slot-select-ui-handler.ts +++ b/src/ui/save-slot-select-ui-handler.ts @@ -594,13 +594,9 @@ class SessionSlot extends Phaser.GameObjects.Container { TextStyle.PARTY, { fontSize: "54px", color: "#f8f8f8" }, ); - text.setShadow(0, 0, undefined); - text.setStroke("#424242", 14); - text.setOrigin(1, 0); - - iconContainer.add(icon); - iconContainer.add(text); + text.setShadow(0, 0, undefined).setStroke("#424242", 14).setOrigin(1, 0); + iconContainer.add([icon, text]); pokemonIconsContainer.add(iconContainer); pokemon.destroy(); @@ -645,6 +641,7 @@ class SessionSlot extends Phaser.GameObjects.Container { return; } this.saveData = sessionData; + this.setupWithData(sessionData); resolve(true); }) .catch(e => {