From 9b1ea3ff63dca39075920cefbba7503a5cd65e4b Mon Sep 17 00:00:00 2001 From: torhal Date: Mon, 22 Jun 2009 19:07:48 +0000 Subject: [PATCH] Fixed the trainer check for recipe binding. --- ARLDatamine.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ARLDatamine.lua b/ARLDatamine.lua index 0e59ef3..592075e 100644 --- a/ARLDatamine.lua +++ b/ARLDatamine.lua @@ -1546,7 +1546,7 @@ do end -- BoP Item - if scan_data.is_item and not flags[3] then + if scan_data.is_item then if (scan_data.bopitem) and (not flags[37]) then tinsert(missing_flags,"37 (BoP Item)") -- If it's a BoP item and flags BoE is set,mark it as extra @@ -1582,8 +1582,8 @@ do if (flags[42]) then tinsert(extra_flags,"42 (BoA Recipe)") end - -- Not BoP recipe,assuming it's not BoA - elseif (not flags[40]) and (not scan_data.boprecipe) then + -- Not BoP recipe,assuming it's not BoA - trainer-taught recipes don't have bind information, skip those. + elseif not flags[3] and (not flags[40]) and (not scan_data.boprecipe) then tinsert(missing_flags,"40 (BoE Recipe)") -- If it's a BoE recipe and flags BoP is set,mark it as extra if (flags[41]) then -- 1.7.9.5