kemayo / wow-handynotes-dragonflight

World of Warcraft addon to tell you where treasures are in the Dragon Isles (requires HandyNotes)
7 stars 3 forks source link

Enchanting treasures in ZC suddenly showing on map again #30

Closed nozzlegear closed 1 year ago

nozzlegear commented 1 year ago

Hey! I'm having a strange problem with Handynotes that I suspect is actually an issue with the game's API itself, but wanted to file an issue here to confirm. I used Handynotes to collect the three new enchanting treasures in Zaralek Caverns, but recently they all showed up on the map again and won't go away. I've confirmed that none of the treasures are actually there where the map says they are.

If I take the quest ids from the Enchanting.lua file and check them using C_QuestLog.IsQuestFlaggedCompleted, all three return false:

print(C_QuestLog.IsQuestFlaggedCompleted(204990)) -- false
print(C_QuestLog.IsQuestFlaggedCompleted(205001)) -- false
print(C_QuestLog.IsQuestFlaggedCompleted(204999)) -- false

So again I think it's probably an issue with Blizzard but just wanted to check and see if I'm misunderstanding what Handynotes is doing?

kemayo commented 1 year ago

The questids weren't present yet, which is why those checks were returning false -- you were trying it with the itemids of the rewards. That said, chris-merritt has provided all these questids now, which have merged in e1e8f79f7091e9ddd9a185c15e42d6e83349743f, so a release I'll put out shortly should fix this..