From c7b35af709faf27b2e59521d2df7f946fc23e598 Mon Sep 17 00:00:00 2001 From: pompachomp Date: Wed, 22 Jul 2009 06:16:42 +0000 Subject: [PATCH] Let's check for "finger" only, and not "ring" plus another words that have "ring" in them. --- ARLDatamine.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ARLDatamine.lua b/ARLDatamine.lua index 1356d1f..ccea0f6 100644 --- a/ARLDatamine.lua +++ b/ARLDatamine.lua @@ -1503,8 +1503,7 @@ do scan_data.Plate = true elseif (strmatch(text,"cloak")) then scan_data.Cloak = true - elseif ((strmatch(text,"ring") or strmatch("finger", text)) and (strmatch(text,"ring:") == nil) - and (strmatch(text,"requires") == nil) and (strmatch(text,"engineering") == nil) and (strmatch(text,"herring") == nil)) then + elseif (strmatch("finger", text)) then scan_data.Ring = true elseif (strmatch(text,"necklace")) then scan_data.Necklace = true -- 1.7.9.5