Questie

Questie

116M Downloads

"Senir's Observations" part 2 (420) not available if you've done "Frostmane Hold"

submarines-and opened this issue ยท 2 comments

commented

Description

If you have completed Frostmane Hold (or have it in your log), Senir's Observation (1 & 2) becomes unavailable.

Part 1 (282) is hidden successfully.
Part 2 (420) is still visible.

Wowhead link

Senir's Observations 1 & 2
https://www.wowhead.com/classic/quest=282/senirs-observations <-- Successfully hidden
https://www.wowhead.com/classic/quest=420/senirs-observations <-- Still visible

Frostmane Hold
https://www.wowhead.com/classic/quest=287/frostmane-hold

Screenshots

image

QuestId 420, the pre-quest is successfully removed.

Questie & WoW version

Questie 8.8.3, WOTLK

commented

I tried adding this to wotlkQuestFixes, but I don't think I understand the data format fully.

        [282] = {
            [questKeys.exclusiveTo] = {287},
        },
        [287] = {
            [questKeys.preQuestSingle] = {},
        },
        [420] = {
            [questKeys.exclusiveTo] = {287},
        },

I can also see that they are already added toclassicQuestFixes , but I am unsure which files are loaded by wotlk client. Also tried adding missing entry to that file, but no luck.

       [420] = {
           [questKeys.exclusiveTo] = {287},
       },
commented

Ok I think I understand. The second fix did the trick, but I also had to recompile database (not just reload).

Pr here: #5064