Fix a possible bug with objective completion
James Whitehead II [01-10-11 - 23:55]
Fix a possible bug with objective completion
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)