From 739489cd6f351c68875ef3d5039c8375997d90f8 Mon Sep 17 00:00:00 2001 From: Yogi Wiguna Date: Thu, 12 Mar 2026 12:32:49 +0800 Subject: [PATCH] feat: add PowerUpInventoryUI script to display and manage player power-ups with single-slot visibility. --- scripts/ui/powerup_inventory_ui.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ui/powerup_inventory_ui.gd b/scripts/ui/powerup_inventory_ui.gd index c4359b5..74c090c 100644 --- a/scripts/ui/powerup_inventory_ui.gd +++ b/scripts/ui/powerup_inventory_ui.gd @@ -120,7 +120,7 @@ func _update_btn_shortcut(_effect_id: int, btn: Button): return # Show only Shortcut 1 as per single-slot request - sc_lbl.text = "[%s]" % SettingsManager.get_control_text("use_powerup") + sc_lbl.text = " %s " % SettingsManager.get_control_text("use_powerup") func _on_btn_pressed(effect_id: int): print("[PowerUpUI] Clicked Button %d" % effect_id)