Version 0.9

- New round bar texture
- Standalone druid mana bar
- Lots of stuff I can't remember
This commit is contained in:
iceroth
2007-04-16 16:58:00 +00:00
parent f5b0391090
commit f63072e40c
17 changed files with 148 additions and 109 deletions

View File

@ -195,9 +195,10 @@ function PlayerMana.prototype:UpdateEnergy(unit)
end
if (not (self.previousEnergy) or (self.previousEnergy <= UnitMana(self.unit))) then
self.tickStart = GetTime()
self.tickerFrame:Show()
if ((not (self.previousEnergy) or (self.previousEnergy <= UnitMana(self.unit))) and
(self.moduleSettings.tickerEnabled)) then
self.tickStart = GetTime()
self.tickerFrame:Show()
end
self.previousEnergy = UnitMana(self.unit)
@ -259,4 +260,4 @@ end
-- Load us up
PlayerMana:new()
IceHUD.PlayerMana = PlayerMana:new()