Quantcast

AckisRecipeList:

Jim-Bim [04-03-09 - 20:45]
AckisRecipeList:
- fixed problem with SetProgressBar not updating numbers correctly
Filename
ARLFrame.lua
diff --git a/ARLFrame.lua b/ARLFrame.lua
index 308d451..760cba6 100644
--- a/ARLFrame.lua
+++ b/ARLFrame.lua
@@ -1215,7 +1215,7 @@ local function SetProgressBar(playerData)
 		pbMax = playerData.recipes_total_filtered
 	end

-	if (not addon.db.profile.includeexcluded) then
+	if (not addon.db.profile.includeexcluded and not addon.db.profile.ignoreexclusionlist) then
 		pbCur = pbCur - playerData.excluded_recipes_unknown
 		pbMax = pbMax - playerData.excluded_recipes_known
 	end