Questie

Questie

116M Downloads

The color for available quests on world map doesn't change to gray when you outlevel them.

Cabro opened this issue ยท 3 comments

commented

I have just leveled up 1 more time, and just noticed this bug.
The icons' colors don't change when you increase the level difference in the same gaming session. You'd need a /reload for that.

Right after leveling and quests turning gray for char (they were yellow when i first logged in this session):
image

After /reload, it updates the colors:
image

8.10.3

commented

This is most likely the part that is wrong

if QuestieMap.questIdFrames[questId] then
-- We already drew this quest so we might need to update the icon (config changed/level up)
for _, frame in ipairs(QuestieMap:GetFramesForQuest(questId)) do
if frame and frame.data and frame.data.QuestData then
local newIcon = _GetQuestIcon(frame.data.QuestData)
if newIcon ~= frame.data.Icon then
frame:UpdateTexture(Questie.usedIcons[newIcon])
end
end
end
return
end

We should be able to test this by manually firing a level up event.

commented

I don't know if this is supposed to be fixed with the latest changes, but it's not:
image

If it matters, char was in Eversong Woods (so TBC zone) while the quest marker shown above is in Tirisfal Glades

commented

I didn't find out yet what is causing this, so it wasn't supposed to be fixed.