From 758a4e95241a8302352445141444563dcbbcff03 Mon Sep 17 00:00:00 2001 From: Xurkon Date: Sat, 28 Mar 2026 23:29:19 -0500 Subject: [PATCH] fix: call ApplyCustomZones after InjectUiMapData completes --- Modules/Libs/QuestiePluginAPI.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/Libs/QuestiePluginAPI.lua b/Modules/Libs/QuestiePluginAPI.lua index db81d54..c4515b6 100644 --- a/Modules/Libs/QuestiePluginAPI.lua +++ b/Modules/Libs/QuestiePluginAPI.lua @@ -218,6 +218,8 @@ function QuestiePlugin:InjectUiMapData(customUiMapData) uiMapId, data = next(customUiMapData.uiMapData, uiMapId) end + ZoneDB:ApplyCustomZones() + Questie:Debug(Questie.DEBUG_DEVELOP, "[QuestiePluginAPI] Plugin '" .. self.name .. "' injected Custom UI Map Data.") end