Update embparser.cpp

This commit is contained in:
Alex King 2025-07-02 17:12:11 -04:00 committed by GitHub
parent 6e34b0a9ae
commit be439170c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1214,6 +1214,8 @@ QuestType PerlembParser::GetQuestTypes(
return is_global ? QuestType::BotGlobal : QuestType::Bot;
} else if (npc_mob->IsMerc()) {
return is_global ? QuestType::MercGlobal : QuestType::Merc;
} else if (npc_mob->IsNPC()) {
return is_global ? QuestType::NPCGlobal : QuestType::NPC;
}
} else {
return is_global ? QuestType::ItemGlobal : QuestType::Item;