feat: standardize v1.5.0 and consolidate stability fixes

This commit is contained in:
Xurkon
2026-03-28 11:08:32 -05:00
parent 4c7a318de6
commit 59c33e9f9c
26 changed files with 942 additions and 771 deletions
+3 -7
View File
@@ -125,13 +125,9 @@ function QuestiePlayer:GetCurrentContinentId()
return 1 -- Default to Eastern Kingdom
end
local currentContinentId = 1 -- Default to Eastern Kingdom
for cId, cont in pairs(l10n.zoneLookup) do
for id, _ in pairs(cont) do
if id == currentZoneId then
currentContinentId = cId
end
end
local currentContinentId = l10n:GetContinentIdByAreaId(currentZoneId)
if currentContinentId == 0 then
return 1 -- Default to Eastern Kingdom
end
return currentContinentId