From 035b7383ae14bcc999cafd86b089d5d747f094ff Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Thu, 1 Aug 2024 18:02:19 +0200 Subject: [PATCH] Fix skip.NotTargetable/skipExtraConditions not being considered if no other skips are set --- Questionable.Model/V1/SkipStepConditions.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Questionable.Model/V1/SkipStepConditions.cs b/Questionable.Model/V1/SkipStepConditions.cs index 9186515d..5f15ca98 100644 --- a/Questionable.Model/V1/SkipStepConditions.cs +++ b/Questionable.Model/V1/SkipStepConditions.cs @@ -24,11 +24,13 @@ public sealed class SkipStepConditions return (CompletionQuestVariablesFlags.Count > 6 && CompletionQuestVariablesFlags.Any(x => x != null)) || Flying != null || Chocobo != null || + NotTargetable || InTerritory.Count > 0 || NotInTerritory.Count > 0 || Item != null || QuestsAccepted.Count > 0 || - QuestsCompleted.Count > 0; + QuestsCompleted.Count > 0 || + ExtraCondition != null; } public override string ToString()