muffin v7.4
This commit is contained in:
parent
8a7847ff37
commit
a4175abacd
54 changed files with 95984 additions and 123967 deletions
|
|
@ -1,3 +1,4 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Numerics;
|
||||
|
|
@ -52,7 +53,11 @@ internal static class SkipCondition
|
|||
SkipStepConditions skipConditions = base.Task.SkipConditions;
|
||||
QuestStep step = base.Task.Step;
|
||||
ElementId elementId = base.Task.ElementId;
|
||||
logger.LogInformation("Checking skip conditions; {ConfiguredConditions}", string.Join(",", skipConditions));
|
||||
ILogger<CheckSkip> logger = logger;
|
||||
object[] array = new object[1];
|
||||
object reference = skipConditions;
|
||||
array[0] = string.Join(",", new ReadOnlySpan<object>(in reference));
|
||||
logger.LogInformation("Checking skip conditions; {ConfiguredConditions}", array);
|
||||
if (CheckFlyingCondition(step, skipConditions))
|
||||
{
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue