mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 06:40:13 -05:00
- made custom bars and counters not be case-sensitive in their spells-to-be-tracked
This commit is contained in:
@ -276,7 +276,7 @@ function IceCustomBar.prototype:GetAuraDuration(unitName, buffName)
|
||||
local isMine = unitCaster == "player"
|
||||
|
||||
while buff do
|
||||
if (buff == buffName and (not self.moduleSettings.trackOnlyMine or isMine)) then
|
||||
if (buff:upper() == buffName:upper() and (not self.moduleSettings.trackOnlyMine or isMine)) then
|
||||
if endTime and not remaining then
|
||||
remaining = endTime - GetTime()
|
||||
end
|
||||
|
Reference in New Issue
Block a user