Fix skip.NotTargetable/skipExtraConditions not being considered if no other skips are set

sb-p1
Liza 2024-08-01 18:02:19 +02:00
parent d3430ae439
commit 035b7383ae
Signed by: liza
GPG Key ID: 7199F8D727D55F67
1 changed files with 3 additions and 1 deletions

View File

@ -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()