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

Fix Pre-pull Earthly star for Astrologian #279

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion BasicRotations/Healer/AST_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public sealed class AST_Default : AstrologianRotation
if (remainTime < 3 && UseBurstMedicine(out act)) return act;
if (remainTime is < 4 and > 3 && AspectedBeneficPvE.CanUse(out act)) return act;
if (remainTime < UseEarthlyStarTime
&& EarthlyStarPvE.CanUse(out act)) return act;
&& EarthlyStarPvE.CanUse(out act, skipTTKCheck: true)) return act;
if (remainTime < 30 && AstralDrawPvE.CanUse(out act)) return act;

return base.CountDownAction(remainTime);
Expand Down Expand Up @@ -266,6 +266,8 @@ protected override bool GeneralGCD(out IAction? act)
}
#endregion



#region Extra Methods
public override bool CanHealSingleSpell => base.CanHealSingleSpell && (GCDHeal || PartyMembers.GetJobCategory(JobRole.Healer).Count() < 2);
public override bool CanHealAreaSpell => base.CanHealAreaSpell && (GCDHeal || PartyMembers.GetJobCategory(JobRole.Healer).Count() < 2);
Expand Down