From 4e7bb577de610cd5eca816f5892aa68a401da4e3 Mon Sep 17 00:00:00 2001 From: torhal Date: Fri, 10 Jul 2009 08:06:53 +0000 Subject: [PATCH] Added "Set:" check to strength check in datamine tooltip to be rid of false positives. --- ARLDatamine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARLDatamine.lua b/ARLDatamine.lua index 8ebf642..5855668 100644 --- a/ARLDatamine.lua +++ b/ARLDatamine.lua @@ -1316,7 +1316,7 @@ do if (not scan_data.verifiedclass) then -- Certain stats can be considered for a specific role (aka spell hit == caster dps). - if (strmatch(text,"strength") and (strmatch(text,"strength of the clefthoof") == nil)) then + if (strmatch(text,"strength") and (strmatch(text,"strength of the clefthoof") == nil) and (strmatch(text, "set:") == nil)) then scan_data.dps = true scan_data.caster = false scan_data.healer = false -- 1.7.9.5