From 7e1ef06d581a0eb188c0e70f26e27a8cd60b2c8a Mon Sep 17 00:00:00 2001 From: pompachomp Date: Tue, 7 Jul 2009 20:38:16 +0000 Subject: [PATCH] let's take into account the reputation vendors too in the check to see that we are scanning a vendor. --- ARLDatamine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARLDatamine.lua b/ARLDatamine.lua index 32cfd82..2c6b5e0 100644 --- a/ARLDatamine.lua +++ b/ARLDatamine.lua @@ -989,7 +989,7 @@ function addon:ScanVendor() local found = false for i in pairs(acquire) do -- If the acquire type is a vendor - if (acquire[i]["Type"] == 2) and (acquire[i]["ID"] == targetID) then + if (((acquire[i]["Type"] == 2) and (acquire[i]["ID"] == targetID)) or ((acquire[i]["Type"] == 6) and (acquire[i]["RepVendor"] == targetID))) then found = true end end -- 1.7.9.5