PVP Quests Showing When Unselected
Gogo1951 opened this issue ยท 5 comments
It looks like https://www.wowhead.com/classic/quest=8386/fight-for-warsong-gulch is not marked as PvP quest on Blizzards side.
/dump GetQuestTagInfo(8386)
returns nil
while it should return {41, "PvP"}
.
To fix this we need to override the API result here:
Questie/Database/QuestieDB.lua
Line 61 in 990dab9
@Gogo1951 can you enable Quest IDs and share the IDs as well? At least for "Fight for Warsong Gulch" I can not reproduce this:
Hmmm... I noticed something on the Arathi Basin quest though. We are using an API function to check if a quest is PvP or not and it seems that data needs to be cached on client side. That means when calling that API for the first time it can return nil
while it returns correct data on the second call.