Skip to content

Commit

Permalink
Merge pull request #412 from MillerTheBest/main
Browse files Browse the repository at this point in the history
unleash the potential
  • Loading branch information
LTS-FFXIV authored Sep 27, 2024
2 parents 0d1da36 + 8660876 commit 6126834
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RotationSolver.Basic/Rotations/Basic/BardRotation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ protected sealed override bool HealSingleAbility(IAction nextGCD, out IAction? a

/// <inheritdoc/>
[RotationDesc(ActionID.TroubadourPvE)]
protected sealed override bool DefenseAreaAbility(IAction nextGCD, out IAction act)
protected override bool DefenseAreaAbility(IAction nextGCD, out IAction act)
{
if (TroubadourPvE.CanUse(out act)) return true;
return false;
Expand Down
2 changes: 1 addition & 1 deletion RotationSolver.Basic/Rotations/Basic/DancerRotation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ protected sealed override bool HealAreaAbility(IAction nextGCD, out IAction act)
/// <param name="nextGCD"></param>
/// <returns></returns>
[RotationDesc(ActionID.ShieldSambaPvE)]
protected sealed override bool DefenseAreaAbility(IAction nextGCD, out IAction act)
protected override bool DefenseAreaAbility(IAction nextGCD, out IAction act)
{
if (ShieldSambaPvE.CanUse(out act, usedUp: true)) return true;
return false;
Expand Down
2 changes: 1 addition & 1 deletion RotationSolver.Basic/Rotations/Basic/MachinistRotation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ static partial void ModifyFullMetalFieldPvE(ref ActionSetting setting)

/// <inheritdoc/>
[RotationDesc(ActionID.TacticianPvE, ActionID.DismantlePvE)]
protected sealed override bool DefenseAreaAbility(IAction nextGCD, out IAction act)
protected override bool DefenseAreaAbility(IAction nextGCD, out IAction act)
{
if (TacticianPvE.CanUse(out act, skipAoeCheck: true)) return true;
if (DismantlePvE.CanUse(out act, skipAoeCheck: true)) return true;
Expand Down

0 comments on commit 6126834

Please sign in to comment.