From 313c74837d31c4a354549875a081278d8c24e72b Mon Sep 17 00:00:00 2001 From: ackis Date: Thu, 4 Jun 2009 17:32:52 +0000 Subject: [PATCH] Lets look at the right side of the tooltip too. --- ARLDatamine.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ARLDatamine.lua b/ARLDatamine.lua index 77e8c1d..15c8ec0 100644 --- a/ARLDatamine.lua +++ b/ARLDatamine.lua @@ -631,8 +631,11 @@ function addon:ScanToolTip(name,recipelist,reverselookup,isvendor) -- Parse all the lines of the tooltip for i=1,ARLDatamineTT:NumLines(),1 do - local linetext = _G["ARLDatamineTTTextLeft" .. i] - local text = linetext:GetText() + local linetextl = _G["ARLDatamineTTTextLeft" .. i] + local textl = linetextl:GetText() + local linetextr = _G["ARLDatamineTTTextRight" .. i] + local textr = linetextl:GetText() + local text = textl .. " " .. textr self:Print(text) -- Check to see if it's a recipe otherwise break out of the for loop if (i == 1) then -- 1.7.9.5