| Filename | |
|---|---|
| ARLFrame.lua |
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