hide instead of setting alpha to 0

This commit is contained in:
Meow
2026-03-14 10:48:24 +01:00
parent 7f6c12d185
commit 2865df8a77
+2 -1
View File
@@ -66,7 +66,7 @@ pfUI:RegisterModule("energytick", "vanilla:tbc", function()
elseif this.mode == "MANA" and diff > 0 then
if UnitMana("player") >= UnitManaMax("player") then
this.start = nil
this.spark:SetAlpha(0)
this:Hide()
elseif this.max ~= 5 and diff > (this.badtick and this.badtick * 1.2 or 5) then
this.target = 2
else
@@ -93,6 +93,7 @@ pfUI:RegisterModule("energytick", "vanilla:tbc", function()
this.start, this.max = GetTime(), this.target
this.target = nil
this.spark:SetAlpha(1)
this:Show()
end
if not this.start then