From: Liza Carvelli Date: Mon, 9 Sep 2024 17:42:25 +0000 (+0200) Subject: Never interrupt quests that are added to the manual priority window X-Git-Tag: v3.1~14 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=a1e7aa41220d15bf0e3cf50028e892938dd6c47f;p=Questionable.git Never interrupt quests that are added to the manual priority window --- diff --git a/Questionable/Controller/QuestController.cs b/Questionable/Controller/QuestController.cs index 2fcef5eb..8cb18d2e 100644 --- a/Questionable/Controller/QuestController.cs +++ b/Questionable/Controller/QuestController.cs @@ -727,6 +727,9 @@ internal sealed class QuestController : MiniTaskController, IDi if (type != ECurrentQuestType.Normal || currentQuest.Sequence == 0) return false; + if (ManualPriorityQuests.Contains(currentQuest.Quest)) + return false; + if (currentQuest.Quest.Info.AlliedSociety != EAlliedSociety.None) return false;