mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 14:50:13 -05:00
Fix for druids logging in with a messed up ticker bar when predictedPower is turned off.
This commit is contained in:
@ -309,7 +309,7 @@ function PlayerMana.prototype:UpdateEnergy(unit)
|
|||||||
|
|
||||||
if self:ShouldUseTicker() and
|
if self:ShouldUseTicker() and
|
||||||
((not (self.previousEnergy) or (self.previousEnergy <= UnitMana(self.unit))) and
|
((not (self.previousEnergy) or (self.previousEnergy <= UnitMana(self.unit))) and
|
||||||
(self.moduleSettings.tickerEnabled)) then
|
(self.moduleSettings.tickerEnabled) and self.manaType == 3) then
|
||||||
self.tickStart = GetTime()
|
self.tickStart = GetTime()
|
||||||
self.tickerFrame:Show()
|
self.tickerFrame:Show()
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user