From 8fb4f46327a0c47f170bceea9ac143e6657c0df3 Mon Sep 17 00:00:00 2001 From: ackis Date: Thu, 23 Oct 2008 01:59:22 +0000 Subject: [PATCH] Fix progress bar --- ARLFrame.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ARLFrame.lua b/ARLFrame.lua index a0b3f70..fa35e79 100644 --- a/ARLFrame.lua +++ b/ARLFrame.lua @@ -131,7 +131,9 @@ end local function GetFilteredRecipes(total, filtered, found, other) - return (total - filtered) + found - other + local totalfiltered = filtered - other + local actualfiltered = total - totalfiltered + return total - actualfiltered end -- 1.7.9.5