From 3c219ae7d0c970497a1ef4120b011788a4012ce6 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Wed, 11 Sep 2024 21:10:48 +0200 Subject: [PATCH] Exclude custom delivery quests from priority window (as they can't be started this way) --- Questionable/Windows/PriorityWindow.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Questionable/Windows/PriorityWindow.cs b/Questionable/Windows/PriorityWindow.cs index 60428f1c..346ca0eb 100644 --- a/Questionable/Windows/PriorityWindow.cs +++ b/Questionable/Windows/PriorityWindow.cs @@ -80,6 +80,7 @@ internal sealed class PriorityWindow : LWindow if (!string.IsNullOrEmpty(_searchString)) { foundQuests = _questRegistry.AllQuests + .Where(x => x.Id is not SatisfactionSupplyNpcId) .Where(x => x.Info.Name.Contains(_searchString, StringComparison.CurrentCultureIgnoreCase)) .Where(x => !_questFunctions.IsQuestUnobtainable(x.Id)); }