Find / Start Quest not working and a possible fix #108


Open
  • Tarkumi created this issue Sep 15, 2018

    World Quest Group Finder is not working anymore and Blizzard changed the method to find/start the quests from the quest log.

    Here is a quick fix:

     

    Replace the QuestTracker:FindQuestGroup function in the Quests.lua at line 5690:

     

    function QuestTracker:FindQuestGroup(questInstance)
    if LFGListUtil_CanSearchForGroup() then
    if(not InCombatLockdown()) then
    LFGListUtil_FindQuestGroup(questInstance.ID);
    end
    else
    print(L["The LFG tool does not work with Quest: "] .. questInstance.Title);
    end
    end

  • Sorha2 posted a comment Sep 15, 2018

    Woops I think I overwrote my earlier work on that, working while away was a poor choice >.<
    Will try recommit when I can :)


To post a comment, please login or register a new account.