#169675
Ozzi
Participant
    @akarb388z Here’s a fix thanks to @Dugi
    Edit file “WorldQuestsList.lua”.

    Find:
    local function IsQuestValidForEye(questID)
        return QuestUtils_IsQuestWorldQuest(questID) or (WQLdb.WorldQuestBfAAssaultQuests[questID or 0] and not IsQuestComplete(questID or 0))
    end

    Replace with:
    local function IsQuestValidForEye(questID)
        if not tonumber(questID) then
            return false
        end
        return QuestUtils_IsQuestWorldQuest(questID) or (WQLdb.WorldQuestBfAAssaultQuests[questID or 0] and not IsQuestComplete(questID or 0))
    end

    Dugi has messaged the developer of World Quests List addon to include these changes.