From b1d21712fce6fd76be5937b2bfb793c4975ade3d Mon Sep 17 00:00:00 2001 From: Xurkon Date: Sat, 28 Mar 2026 22:38:36 -0500 Subject: [PATCH] fix: add self-mapping for custom zone areaIds in InjectZoneTables --- Modules/Libs/QuestiePluginAPI.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/Libs/QuestiePluginAPI.lua b/Modules/Libs/QuestiePluginAPI.lua index 704f71f..ffeaa2a 100644 --- a/Modules/Libs/QuestiePluginAPI.lua +++ b/Modules/Libs/QuestiePluginAPI.lua @@ -143,6 +143,7 @@ function QuestiePlugin:InjectZoneTables(customZoneTables) if uiMapId ~= areaId then ZoneDB.private.subZoneToParentZone[uiMapId] = areaId + ZoneDB.private.areaIdToUiMapId[uiMapId] = uiMapId end end uiMapId, areaId = next(customZoneTables.uiMapIdToAreaId, uiMapId)