From 369c1c9abd9b21782f45c1d0f3d7c3f9be1122d2 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Sun, 11 Apr 2010 22:37:41 -0400 Subject: [PATCH] In addon:PrintScanResults(): If the recipe is flagged Trainer AND it doesn't have a physical recipe item, warn if its quality isn't Common. --- Scanner.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scanner.lua b/Scanner.lua index c1205b5..115cdd3 100644 --- a/Scanner.lua +++ b/Scanner.lua @@ -1981,7 +1981,7 @@ do tinsert(output, string.format(" Extra Specialty: %s", recipe.specialty)) end - if recipe:IsFlagged("common1", "TRAINER") and recipe.quality ~= private.item_qualities["COMMON"] then + if recipe:IsFlagged("common1", "TRAINER") and not SPELL_TO_RECIPE_MAP[recipe.spell_id] and recipe.quality ~= private.item_qualities["COMMON"] then local QS = private.item_quality_names found_problem = true -- 1.7.9.5