From 92076fd93f1cc6c8cabcc6be1c25498a27dbe0be Mon Sep 17 00:00:00 2001 From: Parnic Date: Wed, 3 Aug 2011 00:23:11 +0000 Subject: [PATCH] - only do spell id exact-match checking if "exact match" is set. otherwise, it will compare spell names --- modules/CustomBar.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/CustomBar.lua b/modules/CustomBar.lua index 6f7b62c..f78fb98 100644 --- a/modules/CustomBar.lua +++ b/modules/CustomBar.lua @@ -597,7 +597,7 @@ function IceCustomBar.prototype:GetAuraDuration(unitName, buffName) duration = self.moduleSettings.maxDuration end - if checkId then + if checkId and self.moduleSettings.exactMatch then validId = spellId == mySpellId end