Release v9.7.10

This commit is contained in:
Xurkon
2026-02-21 22:52:51 -06:00
parent 52c13b98aa
commit c42945a1f8
7 changed files with 83 additions and 124 deletions
-7
View File
@@ -1100,18 +1100,11 @@ function QuestieDB.IsComplete(questId)
local allDone = true
for _, obj in ipairs(objectives) do
if obj.numRequired and obj.numRequired > 0 and obj.numFulfilled ~= obj.numRequired then
if questLogEntry.questId == 12843 or questLogEntry.questId == 12844 then
print("QuestieDB " .. tostring(questLogEntry.title) .. " incomplete because obj " .. tostring(obj.text) .. " has " .. tostring(obj.numFulfilled) .. "/" .. tostring(obj.numRequired))
end
allDone = false
break
end
end
if (questLogEntry.questId == 12843 or questLogEntry.questId == 12844) and allDone then
print("QuestieDB " .. tostring(questLogEntry.title) .. " thinks it is all done.")
end
return allDone and 1 or 0
end