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.
This commit is contained in:
parent
a5ecbb8b1e
commit
e8eaec72b5
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue