From d12debe891e3a39bb1f4af32ab11631d2969871f Mon Sep 17 00:00:00 2001 From: James Whitehead II Date: Mon, 10 Jan 2011 23:55:07 +0000 Subject: [PATCH] Fix a possible bug with objective completion --- sources/QuestObjectives.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/QuestObjectives.lua b/sources/QuestObjectives.lua index 335bda2..1e1b728 100644 --- a/sources/QuestObjectives.lua +++ b/sources/QuestObjectives.lua @@ -26,7 +26,7 @@ end) eventFrame:SetScript("OnEvent", function(self, event, ...) if event == "QUEST_POI_UPDATE" then addon:OBJECTIVES_CHANGED() - elseif event == "QUEST_LOG_UPDATE" and (...) == "player" then + elseif event == "QUEST_LOG_UPDATE" then addon:OBJECTIVES_CHANGED() end end) -- 1.7.9.5