From 84c95535aeb77c4607686dbe82c4332d8d09c517 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sun, 11 Aug 2024 02:29:52 +0200 Subject: [PATCH] Add extra unlock condition to 'A Time to Every Purpose' --- Questionable/Data/QuestData.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Questionable/Data/QuestData.cs b/Questionable/Data/QuestData.cs index 0a316fac..89b38912 100644 --- a/Questionable/Data/QuestData.cs +++ b/Questionable/Data/QuestData.cs @@ -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)