From 3fe334de297df48cede3be2e2c5ba6a9043c61a8 Mon Sep 17 00:00:00 2001 From: John Pasula Date: Fri, 25 Mar 2011 14:59:56 -0600 Subject: [PATCH] If you're scanning runeforging, your skill level is now your player level. Fix for ticket 1081. --- Core.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Core.lua b/Core.lua index 7670506..e7c89aa 100644 --- a/Core.lua +++ b/Core.lua @@ -970,6 +970,10 @@ do function addon:Scan(textdump, is_refresh) local current_prof, prof_level = _G.GetTradeSkillLine() + if current_prof == private.runeforging_name then + prof_level = _G.UnitLevel("player") + end + -- Bail if we haven't opened a tradeskill frame. if current_prof == "UNKNOWN" then self:Print(L["OpenTradeSkillWindow"]) -- 1.7.9.5