From be439170c4ee92edc39d972a3248a1506e08617e Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Wed, 2 Jul 2025 17:12:11 -0400 Subject: [PATCH] Update embparser.cpp --- zone/embparser.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zone/embparser.cpp b/zone/embparser.cpp index d3bb2c692..903a4821f 100644 --- a/zone/embparser.cpp +++ b/zone/embparser.cpp @@ -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;