From b24d797e1803c9b20fc87b9ce65adffb87fa451f Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Mon, 10 Mar 2025 01:53:39 +0100 Subject: [PATCH] Don't start priority quests when StartSingleQuest IPC is used --- Questionable/Controller/QuestController.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Questionable/Controller/QuestController.cs b/Questionable/Controller/QuestController.cs index 0a0366d3..cf14b048 100644 --- a/Questionable/Controller/QuestController.cs +++ b/Questionable/Controller/QuestController.cs @@ -799,6 +799,9 @@ internal sealed class QuestController : MiniTaskController public bool IsInterruptible() { + if (AutomationType is EAutomationType.SingleQuestA or EAutomationType.SingleQuestB) + return false; + var details = CurrentQuestDetails; if (details == null) return false; -- 2.20.1