From: Liza Carvelli Date: Sun, 11 Aug 2024 00:29:52 +0000 (+0200) Subject: Add extra unlock condition to 'A Time to Every Purpose' X-Git-Tag: v2.6~5 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=84c95535aeb77c4607686dbe82c4332d8d09c517;p=Questionable.git Add extra unlock condition to 'A Time to Every Purpose' --- 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)