diff --git a/modules/CustomBar.lua b/modules/CustomBar.lua index 9676f38..0162091 100644 --- a/modules/CustomBar.lua +++ b/modules/CustomBar.lua @@ -278,7 +278,7 @@ function IceCustomBar.prototype:GetAuraDuration(unitName, buffName) local isMine = unitCaster == "player" while buff do - if (buff:upper() == buffName:upper() and (not self.moduleSettings.trackOnlyMine or isMine)) then + if (string.match(buff:upper(), buffName:upper()) and (not self.moduleSettings.trackOnlyMine or isMine)) then if endTime and not remaining then remaining = endTime - GetTime() end