Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #165354
    akarb388z
    Participant

      when im running dugi guie and worldquestlist, i got the following error

      error
      70x FrameXML/QuestUtils.lua:315: bad argument #1 to ‘IsWorldQuest’ (outside of expected range -2147483648 to 2147483647 – Usage: local isWorldQuest = C_QuestLog.IsWorldQuest(questID))
      [string “=[C]”]: in function `IsWorldQuest’
      [string “@FrameXML/QuestUtils.lua”]:315: in function <FrameXML/QuestUtils.lua:314>
      [string “@WorldQuestsList/WorldQuestsList.lua”]:8735: in function <WorldQuestsList/WorldQuestsList.lua:8734>
      [string “@WorldQuestsList/WorldQuestsList.lua”]:8757: in function `ObjectiveTracker_Update_hook’
      [string “@WorldQuestsList/WorldQuestsList.lua”]:8823: in function <WorldQuestsList/WorldQuestsList.lua:8822>
      Locals:
      (*temporary) = “DGV_NO_GUIDE”
      (*temporary) = “outside of expected range -2147483648 to 2147483647 – Usage: local isWorldQuest = C_QuestLog.IsWorldQuest(questID)”

      as soon i deactivate dugi guide the error stops, and i can use all other addons
      as this is an error involving several addons i have difficult to track this

      #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.

      Viewing 2 posts - 1 through 2 (of 2 total)
      • You must be logged in to reply to this topic.