From f19fa10a29c5e338ac7f1bfc3554a373fcec7ab8 Mon Sep 17 00:00:00 2001 From: ackis Date: Fri, 29 May 2009 18:47:55 +0000 Subject: [PATCH] Fix dataminer vendor issue. --- ARLDatamine.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ARLDatamine.lua b/ARLDatamine.lua index 8598e9a..3543e73 100644 --- a/ARLDatamine.lua +++ b/ARLDatamine.lua @@ -445,10 +445,10 @@ self:Print("DEBUG: Tooltip text: " .. text) local matchtext = string.match(text, "%a+: ") -- If the header is not a recipe - if (not recipenames[text]) then + if (not recipenames[matchtext]) then break -- If we're dealing with an enchanting recipe, flag it - elseif (text == "Formula: ") then + elseif (matchtext == "Formula: ") then enchanting = true end -- We're on the second line in the tooltip now -- 1.7.9.5