Bug - Waiting for Info questL11Black not started from council

ckb

Minion
Staff member
Upon reaching L11 and visiting the council, this starts questL11MacGuffin.
Now, questL11Black is 'unstarted'. Visiting the quest log will correctly set questL11Black to started.

questL11Black should be started at the same time that questL11MacGuffin is started.
 

Darzil

Developer
I think I'd add into QuestManager.handleCouncilChange(), after the call to QuestDatabase.handleCouncilText() :
if ( QuestDatabase.isQuestLaterThan( Quest.MACGUFFIN, "unstarted" )
{
QuestDatabase.setQuestIfBetter( Quest.BLACK, QuestDatabase.STARTED );
}

(not at home today)
 
Top