Fix: Townsfolk POIs not appearing due to uiMapId < 1000 not being registered

This commit is contained in:
Xurkon
2026-03-29 04:44:21 -05:00
parent d2732b9b4d
commit 7503f251dc
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ function ZoneDB:ApplyCustomZones()
for uiMapId, data in pairs(QuestieCompat.UiMapData) do
if not uiMapId or type(uiMapId) ~= "number" then
-- skip non-numeric keys
elseif uiMapId > 1000 and _ZoneDB.areaIdToUiMapId[uiMapId] == nil then
elseif _ZoneDB.areaIdToUiMapId[uiMapId] == nil then
_ZoneDB.areaIdToUiMapId[uiMapId] = uiMapId
end