From 99de4a8185ff13e7a91024cd048125d0973b2a63 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Fri, 26 Nov 2010 15:17:48 -0500 Subject: [PATCH] Fixed bug with exclusions. --- Interface/List.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Interface/List.lua b/Interface/List.lua index 5a9e1d7..67e2feb 100644 --- a/Interface/List.lua +++ b/Interface/List.lua @@ -783,7 +783,7 @@ function private.InitializeListFrame() if recipe then if recipe:HasState("KNOWN") and recipe.profession == current_prof then known_count = known_count + 1 - elseif recipe_profession == current_prof then + elseif recipe.profession == current_prof then unknown_count = unknown_count + 1 end end -- 1.7.9.5