From 16ab072827c14b0dc52b53853c73c8fe6339e838 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Tue, 30 Mar 2010 07:10:28 -0400 Subject: [PATCH] In addon:InitializeRecipe(): If the profession passed is Smelting, look up Mining instead. --- ARL.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ARL.lua b/ARL.lua index e92446c..ad30893 100644 --- a/ARL.lua +++ b/ARL.lua @@ -1574,6 +1574,9 @@ function addon:InitializeRecipe(profession) --@end-alpha@ return end + if profession == private.professions["Smelting"] then + profession = private.mining_name + end local func = PROFESSION_INITS[profession] if func then -- 1.7.9.5