From e8eaec72b56481ab720d4545907fda78051b1917 Mon Sep 17 00:00:00 2001 From: Nicolas Sanchez <98576999+nicolassanchez02@users.noreply.github.com> Date: Fri, 29 May 2026 19:57:39 -0500 Subject: [PATCH] Fix mistyped quest IDs dropping four DD quests Four DD_TIER CogLevelQuest start quests were keyed 2816-2819 in QuestDict, but those IDs are also used later by the real Daisy Gardens tier-2 quests (DD_TIER + 2). Since a later key wins in a dict literal, the earlier four were silently dropped, and the 20xx sequence they belong to (2013, 2014, 2015, _, _, _, _, 2020) was left with a four-slot hole at 2016-2019, which are defined nowhere else. Renumbered the four to 2016-2019. This restores the dropped quests and removes the duplicate-key collision; the real 2816-2819 are unchanged. --- toontown/quest/Quests.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/toontown/quest/Quests.py b/toontown/quest/Quests.py index 655a25b..e9c4a39 100644 --- a/toontown/quest/Quests.py +++ b/toontown/quest/Quests.py @@ -3579,7 +3579,7 @@ QuestDict = { Any, NA, DefaultDialog), - 2816: (DD_TIER, + 2016: (DD_TIER, Start, (CogLevelQuest, Anywhere, @@ -3590,7 +3590,7 @@ QuestDict = { Any, NA, DefaultDialog), - 2817: (DD_TIER, + 2017: (DD_TIER, Start, (CogLevelQuest, Anywhere, @@ -3601,7 +3601,7 @@ QuestDict = { Any, NA, DefaultDialog), - 2818: (DD_TIER, + 2018: (DD_TIER, Start, (CogLevelQuest, Anywhere, @@ -3612,7 +3612,7 @@ QuestDict = { Any, NA, DefaultDialog), - 2819: (DD_TIER, + 2019: (DD_TIER, Start, (CogLevelQuest, Anywhere,