Ackis Recipe List:
Ackis [10-29-08 - 19:07]
Ackis Recipe List:
- Fix ticket 153
- Lets fix a bug where known recipes screwed up the porgress bar totals
- Dry-coded (Compiles with luac -p)
diff --git a/ARLFrame.lua b/ARLFrame.lua
index bfa3790..a7ac158 100644
--- a/ARLFrame.lua
+++ b/ARLFrame.lua
@@ -143,7 +143,15 @@ local function GetFilteredRecipes(total, filtered, found, other)
local totalfiltered = filtered - other
local actualfiltered = total - totalfiltered
- return found + actualfiltered
+ if (not addon.db.profile.filters.general.known) then
+
+ return found + actualfiltered
+
+ else
+
+ return found
+
+ end
end