From c822b2d57208c4452234ba8cbce2208141f1f29c Mon Sep 17 00:00:00 2001 From: Adrian L Lange Date: Mon, 6 Aug 2012 13:53:24 +0200 Subject: [PATCH] Hide the quest detail if it's already accepted --- Monomyth.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Monomyth.lua b/Monomyth.lua index b0d72a8..424a71b 100644 --- a/Monomyth.lua +++ b/Monomyth.lua @@ -130,6 +130,8 @@ end) Monomyth:Register('QUEST_ACCEPTED', function() if(GossipFrame:IsShown() and GetNumGossipAvailableQuests() == 0 and GetNumGossipCompletedQuests() == 0) then CloseGossip() + elseif(QuestFrame:IsShown()) then + HideUIPanel(QuestFrame) end end) -- 1.7.9.5