Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: oblation and aurora will only be used when no the status they pr…
Browse files Browse the repository at this point in the history
…ovided.
  • Loading branch information
ArchiDog1998 committed Apr 7, 2023
1 parent 17aa18d commit 4ad139f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RotationSolver.Basic/Rotations/Basic/DRK_Base.cs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ protected static bool DarkSideEndAfterGCD(uint gctCount = 0, uint abilityCount =
/// </summary>
public static IBaseAction Oblation { get; } = new BaseAction(ActionID.Oblation, true, isTimeline: true)
{
TargetStatus = new StatusID[] { StatusID.Oblation },
ActionCheck = b => !b.HasStatus(true, StatusID.Oblation),
ChoiceTarget = TargetFilter.FindAttackedTarget,
};

Expand Down
2 changes: 1 addition & 1 deletion RotationSolver.Basic/Rotations/Basic/GNB_Base.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public abstract class GNB_Base : CustomRotation
/// </summary>
public static IBaseAction Aurora { get; } = new BaseAction(ActionID.Aurora, true, isTimeline: true)
{
TargetStatus = new StatusID[] { StatusID.Aurora },
ActionCheck = b => !b.HasStatus(true, StatusID.Aurora),
};

/// <summary>
Expand Down

0 comments on commit 4ad139f

Please sign in to comment.