# HG changeset patch # User James D. Callahan III # Date 1345739403 18000 # Node ID 1f09f3590baa81db894bdbdc349938652cacc562 # Parent f279148e329871a4fcaef6d10a3fd62c405bd8d1 Don't record quest ID 0. diff -r f279148e3298 -r 1f09f3590baa Main.lua --- a/Main.lua Thu Aug 23 11:02:39 2012 -0500 +++ b/Main.lua Thu Aug 23 11:30:03 2012 -0500 @@ -1248,7 +1248,9 @@ while processed_quests <= num_quests do local _, _, _, _, is_header, _, _, _, quest_id = _G.GetQuestLogTitle(entry_index) - if not is_header then + if quest_id == 0 then + processed_quests = processed_quests + 1 + elseif not is_header then _G.SelectQuestLogEntry(entry_index); local quest = DBEntry("quests", quest_id)