1
0
Fork 0

Add extra unlock condition to 'A Time to Every Purpose'

master
Liza 2024-08-11 02:29:52 +02:00
parent ada2cf2833
commit 84c95535ae
Signed by: liza
GPG Key ID: 7199F8D727D55F67
1 changed files with 4 additions and 0 deletions

View File

@ -57,6 +57,10 @@ internal sealed class QuestData
.Select(x => new LeveInfo(x)),
];
_quests = quests.ToDictionary(x => x.QuestId, x => x);
// workaround because the game doesn't require completion of the CT questline through normal means
QuestInfo aTimeToEveryPurpose = (QuestInfo) _quests[new QuestId(425)];
aTimeToEveryPurpose.AddPreviousQuest(new QuestId(495));
}
public IQuestInfo GetQuestInfo(ElementId elementId)