mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 22:51:53 -05:00
Balance druids with Nature's Wrath now treat 50-100 astral power as full for alpha purposes
This commit is contained in:
@ -296,6 +296,14 @@ function PlayerMana.prototype:TreatEmptyAsFull()
|
|||||||
or self.manaType == SPELL_POWER_FURY or self.manaType == SPELL_POWER_PAIN or self.manaType == SPELL_POWER_MAELSTROM))
|
or self.manaType == SPELL_POWER_FURY or self.manaType == SPELL_POWER_PAIN or self.manaType == SPELL_POWER_MAELSTROM))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function PlayerMana.prototype:IsFull(scale)
|
||||||
|
if IceHUD.WowVer >= 80000 and self.manaType == SPELL_POWER_LUNAR_POWER and IsPlayerSpell(202430) then
|
||||||
|
return scale - 0.5 >= 0
|
||||||
|
end
|
||||||
|
|
||||||
|
return PlayerMana.super.prototype.IsFull(self, scale)
|
||||||
|
end
|
||||||
|
|
||||||
function PlayerMana.prototype:UpdateEvent(event, unit, powertype)
|
function PlayerMana.prototype:UpdateEvent(event, unit, powertype)
|
||||||
self:Update(unit, powertype)
|
self:Update(unit, powertype)
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user