Quests.cpp change
Posted: Thu Apr 13, 2017 3:05 pm
Please change the follow section to this which is more that are quests catagories that should be yellow
it adds Hallmark,Deity, and Miscellaneaous
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;
}