mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 22:51:53 -05:00
- more minor cleanups before tagging a new release version
This commit is contained in:
@ -191,9 +191,9 @@ function HungerForBlood.prototype:UpdateHungerForBlood(unit, fromUpdate)
|
||||
remaining = hfbEndTime - now
|
||||
end
|
||||
if (hfbBuffCount ~= nil and hfbBuffCount > 2) then
|
||||
self:UpdateBar(hfbDuration > 0 and remaining / hfbDuration or 0, "HungerForBloodMax")
|
||||
self:UpdateBar(hfbDuration ~= 0 and remaining / hfbDuration or 0, "HungerForBloodMax")
|
||||
else
|
||||
self:UpdateBar(hfbDuration > 0 and remaining / hfbDuration or 0, "HungerForBlood")
|
||||
self:UpdateBar(hfbDuration ~= 0 and remaining / hfbDuration or 0, "HungerForBlood")
|
||||
end
|
||||
|
||||
formatString = self.moduleSettings.upperText or ''
|
||||
|
Reference in New Issue
Block a user