Fix tracker crash and killcredit NPC linking

This commit is contained in:
Xurkon
2026-03-28 17:36:04 -05:00
parent edcd97a0ce
commit 75426c2bb1
4 changed files with 162 additions and 15 deletions
+1 -1
View File
@@ -1230,7 +1230,7 @@ function QuestieTracker:Update()
-- Add incomplete Quest Objectives
if complete == 0 and quest.isComplete ~= true then
for _, objective in pairs(quest.Objectives) do
if (not Questie.db.profile.hideCompletedQuestObjectives or (Questie.db.profile.hideCompletedQuestObjectives and objective.Needed ~= objective.Collected)) then
if objective and (not Questie.db.profile.hideCompletedQuestObjectives or (Questie.db.profile.hideCompletedQuestObjectives and objective.Needed ~= objective.Collected)) then
-- Get next line in linePool
line = TrackerLinePool.GetNextLine()