v1.4.9: Validation fixes, Profiler fix, Quest link duplicate fix, Ascension fixes

This commit is contained in:
Xurkon
2026-03-26 06:47:54 -05:00
parent 284f0c3794
commit 1fc9727fee
194 changed files with 21008 additions and 743 deletions
+6 -2
View File
@@ -22,8 +22,10 @@ QuestieDB.npcKeys = {
}
QuestieDB.npcKeysReversed = {}
for key, id in pairs(QuestieDB.npcKeys) do
local key, id = next(QuestieDB.npcKeys)
while key do
QuestieDB.npcKeysReversed[id] = key
key, id = next(QuestieDB.npcKeys, key)
end
@@ -92,8 +94,10 @@ QuestieDB.npcFlags = (Questie.IsTBC or Questie.IsWotlk) and {
-- temporary, until we remove the old db funcitons
QuestieDB._npcAdapterQueryOrder = {}
for key, id in pairs(QuestieDB.npcKeys) do
local key, id = next(QuestieDB.npcKeys)
while key do
QuestieDB._npcAdapterQueryOrder[id] = key
key, id = next(QuestieDB.npcKeys, key)
end
-- npcData is nil until a DB plugin sets it