Quantcast

Fix nil error reported by Ethan.

ackis [06-18-09 - 19:51]
Fix nil error reported by Ethan.
Filename
ARLDatamine.lua
diff --git a/ARLDatamine.lua b/ARLDatamine.lua
index 9131e5f..ab1c9d9 100644
--- a/ARLDatamine.lua
+++ b/ARLDatamine.lua
@@ -982,10 +982,8 @@ function addon:ScanVendor()
 				local found = false
 				for i in pairs(acquire) do
 					-- If the acquire type is a vendor
-					if (acquire[i]["Type"] == 2) then
-						if (acquire[j]["ID"] == targetID) then
-							found = true
-						end
+					if (acquire[i]["Type"] == 2) and (acquire[i]["ID"] == targetID) then
+						found = true
 					end
 				end
 				if (not found) then