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

Commit

Permalink
Update SCH_Default.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
LTS-FFXIV authored Apr 18, 2024
1 parent 117770c commit 67a2c05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BasicRotations/Healer/SCH_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected override bool EmergencyAbility(IAction nextGCD, out IAction? act)
protected override bool GeneralGCD(out IAction? act)
{
if (SummonEosPvE.CanUse(out act)) return true;
if (BioPvE.CanUse(out act)) return true;
if (BioPvE.CanUse(out act) && AllHostileTargets.Where(p => p.DistanceToPlayer() < 5).Count() < 2) return true;

//AOE
if (ArtOfWarPvE.CanUse(out act)) return true;
Expand Down Expand Up @@ -179,4 +179,4 @@ protected override bool AttackAbility(IAction nextGCD, out IAction? act)
}
return base.CountDownAction(remainTime);
}
}
}

0 comments on commit 67a2c05

Please sign in to comment.