From: Liza Carvelli Date: Wed, 11 Sep 2024 19:10:48 +0000 (+0200) Subject: Exclude custom delivery quests from priority window (as they can't be started this... X-Git-Tag: v3.3~21 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=3c219ae7d0c970497a1ef4120b011788a4012ce6;p=Questionable.git Exclude custom delivery quests from priority window (as they can't be started this way) --- 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)); }