don't check missing categories during quest indexing

This commit is contained in:
Martin Michelsen
2023-11-13 14:25:31 -08:00
parent d976452e00
commit c5f047dc0d
3 changed files with 10 additions and 4 deletions
+2 -2
View File
@@ -1065,9 +1065,9 @@ void ServerState::resolve_ep3_card_names() {
void ServerState::load_quest_index() {
config_log.info("Collecting quests");
this->default_quest_index.reset(new QuestIndex("system/quests", this->quest_category_index));
this->default_quest_index.reset(new QuestIndex("system/quests", this->quest_category_index, false));
config_log.info("Collecting Episode 3 download quests");
this->ep3_download_quest_index.reset(new QuestIndex("system/ep3/maps-download", this->quest_category_index));
this->ep3_download_quest_index.reset(new QuestIndex("system/ep3/maps-download", this->quest_category_index, true));
}
void ServerState::compile_functions() {