From 25e20359db56a88a2fec0b552b29e4dc79b936f5 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Sat, 12 Mar 2011 23:07:02 -0600 Subject: [PATCH] Expand the missing recipe item ID check to look for Instance, Raid, Mob Drop, and World Drop filters. --- Scanner.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scanner.lua b/Scanner.lua index 084b6c9..364dd9e 100644 --- a/Scanner.lua +++ b/Scanner.lua @@ -1079,8 +1079,8 @@ do if recipe_item_id then RECIPE_ITEM_TO_SPELL_MAP[recipe_item_id] = spell_id - elseif recipe:HasFilter("common1", "VENDOR") then - self:Debug("Recipe %d (%s) has Vendor filter flag without a recipe item ID.", spell_id, recipe.name) + elseif recipe:HasFilter("common1", "VENDOR") or recipe:HasFilter("common1", "INSTANCE") or recipe:HasFilter("common1", "RAID") or recipe:HasFilter("common1", "MOB_DROP") or recipe:HasFilter("common1", "WORLD_DROP") then + self:Debug("Recipe %d (%s) is missing a recipe item ID.", spell_id, recipe.name) end end end -- 1.7.9.5