From: Liza Carvelli Date: Sun, 1 Sep 2024 13:44:59 +0000 (+0200) Subject: Make sequence 0 non-interruptible, as you otherwise get quests with a lower priority... X-Git-Tag: v2.20~7 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=7c62a85a8a342f70d0a7620b44ae58cceb297b78;p=Questionable.git Make sequence 0 non-interruptible, as you otherwise get quests with a lower priority than the MSQ --- diff --git a/Questionable/Controller/QuestController.cs b/Questionable/Controller/QuestController.cs index 70512f8a..2fcef5eb 100644 --- a/Questionable/Controller/QuestController.cs +++ b/Questionable/Controller/QuestController.cs @@ -724,7 +724,7 @@ internal sealed class QuestController : MiniTaskController, IDi return false; var (currentQuest, type) = details.Value; - if (type != ECurrentQuestType.Normal) + if (type != ECurrentQuestType.Normal || currentQuest.Sequence == 0) return false; if (currentQuest.Quest.Info.AlliedSociety != EAlliedSociety.None)