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.itemKeys = {
}
QuestieDB.itemKeysReversed = {}
for key, id in pairs(QuestieDB.itemKeys) do
local key, id = next(QuestieDB.itemKeys)
while key do
QuestieDB.itemKeysReversed[id] = key
key, id = next(QuestieDB.itemKeys, key)
end
-- item class/subClass combinations
@@ -119,8 +121,10 @@ QuestieDB.itemCompilerOrder = { -- order easily skipable data first for efficien
-- temporary, until we remove the old db funcitons
QuestieDB._itemAdapterQueryOrder = {}
for key, id in pairs(QuestieDB.itemKeys) do
local key, id = next(QuestieDB.itemKeys)
while key do
QuestieDB._itemAdapterQueryOrder[id] = key
key, id = next(QuestieDB.itemKeys, key)
end
-- itemData is nil until a DB plugin sets it