From 6ae121b832b1f764e8a0eedb4bc8a3c1233edf1d Mon Sep 17 00:00:00 2001 From: ackis Date: Thu, 18 Jun 2009 21:34:09 +0000 Subject: [PATCH] Fix issue for damage string causing the mage flag to be set. --- ARLDatamine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARLDatamine.lua b/ARLDatamine.lua index be3a967..e80b8af 100644 --- a/ARLDatamine.lua +++ b/ARLDatamine.lua @@ -1400,7 +1400,7 @@ do elseif (strmatch(text,"hunter")) then scan_data.Hunter = true scan_data.found_class = true - elseif (strmatch(text,"mage")) then + elseif (strmatch(text,"mage")) and strmatch(text,"damage") == nil then scan_data.Mage = true scan_data.found_class = true elseif (strmatch(text,"paladin")) then -- 1.7.9.5