From 3925609a2ce3da98ed3b0bcd7d47021c76b6705f Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Fri, 9 Jul 2010 18:59:09 -0400 Subject: [PATCH] In Scanner.lua - renamed SortRecipeList() to SortRecipesByID() since Frame.lua has a function by that name which works differently. --- Scanner.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Scanner.lua b/Scanner.lua index 9945d50..40259b1 100644 --- a/Scanner.lua +++ b/Scanner.lua @@ -842,7 +842,7 @@ do return reca.spell_id < recb.spell_id end - local function SortRecipeList() + local function SortRecipesByID() local sorted_recipes = addon.sorted_recipes table.wipe(sorted_recipes) @@ -872,7 +872,7 @@ do recipe_list[i] = master_list[i] end end - SortRecipeList() + SortRecipesByID() table.wipe(output) -- Parse the entire recipe database @@ -1043,7 +1043,7 @@ do recipe_list[i] = master_list[i] end end - SortRecipeList() + SortRecipesByID() table.wipe(output) for index, id in ipairs(addon.sorted_recipes) do -- 1.7.9.5