GetQuestsCompleted error
dartraiden opened this issue ยท 4 comments
[9.0.1] GetQuestsCompleted was moved to C_QuestLog.GetAllCompletedQuestIDs() and returns quest IDs an a sorted array
{
[1] = 56775,
[2] = 58208,
[3] = 58209,
}
Crap I forgot about this. >.<
I've amended the code and a new alpha package will be on CurseForge soon. Let me know how it goes. ๐
Fix because the author's upload takes a while:
at 228 of Core.lua:
--completedQuests = GetQuestsCompleted(completedQuests)
local tmpPairs = C_QuestLog.GetAllCompletedQuestIDs()
for _, id in ipairs(tmpPairs) do
completedQuests[id] = "true";
end