"We Need An Outpost" made the rest of the Loremasters orange.
puggan opened this issue ยท 6 comments
The quests appear red when there are prerequisites that need to be fulfilled. As one fulfills requirements, other quests will change from red to different colors. Yellow quests are normal ones, and orange quests are ones that are marked as legendary. Some of the legendary quests are the old ones given by the black dragon, and a lot of them are for the artifact weapons in Legion.
Sorry, red=Need orerequisites => orange=Unobtainable
diging around, and quest (35049) Lumbermill looks to be to suspisus one.
but i keep diging abit more.
Grail-Achievements/Grail-Achievements.lua, row 6813
G[35137]={508923} -- The Sparring Arena
I didn't select the Sparring Arena
Grail-Achievements/Grail-Achievements.lua
row 7009 - 7010
Grail.indexedQuests[achievement] = newTable
Grail.loremasterQuests[achievementsToZoneMapping[achievement]] = newTable
For Zone 949, there is 3 achivments: 508923, 508924, 509607
for each of thous 3, the code above adds a tale to indexedQuests at the achivment-id as position,
and then tries to add it to the loremasterQuests at the zone-id as position = 949.
all 3 achivments wirtes to loremasterQuests[949], replacing it, insted of merging them.
As I have no ide how to merge the tables, i Moved the other 2 achivments to another zone, and it solved the problem.
So same promlem as in Issue #15, so closing thisone.