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

Commit

Permalink
fix: PLD text Blade using changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Mar 3, 2023
1 parent e174708 commit eb0b0b2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions RotationSolver/Rotations/Tank/PLD/PLD_Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,11 @@ private protected override bool AttackAbility(byte abilitiesRemaining, out IActi

private protected override bool GeneralGCD(out IAction act)
{
if (BladeofValor.CanUse(out act, mustUse: true)) return true;
if (BladeofTruth.CanUse(out act, mustUse: true)) return true;
if (BladeofFaith.CanUse(out act, mustUse: true)) return true;
if (Confiteor.CanUse(out act, mustUse: true)) return true;
if (Confiteor.CanUse(out act, mustUse: true))
{
if (Player.HasStatus(true, StatusID.ConfiteorReady)) return true;
if (Confiteor.ID != Confiteor.AdjustedID) return true;
}

//AOE
if (UseHoly && HolyCircle.CanUse(out act)) return true;
Expand Down

0 comments on commit eb0b0b2

Please sign in to comment.