Page 1 of 1

Quests.cpp change

Posted: Thu Apr 13, 2017 3:05 pm
by Ememjr
Please change the follow section to this which is more that are quests catagories that should be yellow

Code: Select all

bool Quest::CheckCategoryYellow(){
	bool ret = false;
	string category = GetType();

	//Check for these category names, return true to set category as yellow in the quest journal
	if (category == "Signature" || category == "Heritage" || category == "Hallmark" || category == "Deity" || category == "Miscellaneaous" || category == "Language" || category == "Lore and Legend" || category == "World Event" || category == "Tradeskill")
		ret = true;
	return ret;
}
it adds Hallmark,Deity, and Miscellaneaous

Re: Quests.cpp change

Posted: Thu Apr 13, 2017 3:37 pm
by Jabantiz
Added and committed to dev svn.

Thanks for the addition.