From eee0a9a21854f130ceacf4aa164a037ba921d2a1 Mon Sep 17 00:00:00 2001 From: ackis Date: Tue, 14 Jul 2009 20:34:53 +0000 Subject: [PATCH] Fix the issue with nothing being printed out. --- ARLDatamine.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ARLDatamine.lua b/ARLDatamine.lua index 119bb69..605f905 100644 --- a/ARLDatamine.lua +++ b/ARLDatamine.lua @@ -1008,19 +1008,19 @@ function addon:ScanVendor() local name,_,_,_,numAvailable = GetMerchantItemInfo(i) if (name) then -self:Print(name) +--self:Print(name) -- Lets scan recipes only on vendors - local matchtext = strmatch(name,"%a+: ") + local matchtext = strlower(strmatch(name,"%a+: ")) -- Check to see if we're dealing with a recipe if (RECIPE_NAMES[matchtext]) then -self:Print("isarecipe") +--self:Print("isarecipe") -- Get rid of the first part of the item local recipename = gsub(name,"%a+\: ","") -- Find out what spell ID we're using local spellid = reverse_lookup[recipename] -- Do the scan if we have the spell ID if (spellid) then -self:Print("spellfound") +--self:Print("spellfound") added = true tinsert(t,addon:TooltipScanRecipe(spellid,false,true)) -- Ok now we know it's a vendor,lets check the database to see if the vendor is listed as an acquire method. -- 1.7.9.5