From 25e30df8887bd3da972e8a58087a35666084e841 Mon Sep 17 00:00:00 2001 From: p-ober Date: Fri, 6 Mar 2026 00:00:20 -0600 Subject: [PATCH] Update SecondaryPowerBar.lua added supercharged display on empty combo points --- Modules/SecondaryPowerBar.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Modules/SecondaryPowerBar.lua b/Modules/SecondaryPowerBar.lua index 9fff9d0..3928b51 100755 --- a/Modules/SecondaryPowerBar.lua +++ b/Modules/SecondaryPowerBar.lua @@ -363,6 +363,12 @@ local function UpdateComboDisplay() bar:SetStatusBarColor(powerBarColourR, powerBarColourG, powerBarColourB, powerBarColourA or 1) end bar:Show() + elseif chargedLookup[i] then + bar:SetValue(1) + bar:SetStatusBarColor(chargedComboPointColourR, chargedComboPointColourG, + chargedComboPointColourB, 0.25) + end + bar:Show() else bar:SetValue(0) bar:Hide()