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

Commit

Permalink
fix: ast whm single hot using changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Feb 14, 2023
1 parent 2fd647a commit f3d5c40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RotationSolver/Rotations/Healer/AST/AST_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private protected override bool HealSingleGCD(out IAction act)
{
//吉星相位
if (AspectedBenefic.CanUse(out act)
&& AspectedBenefic.Target.GetHealthRatio() > 0.4) return true;
&& (IsMoving || AspectedBenefic.Target.GetHealthRatio() > 0.4)) return true;

//福星
if (Benefic2.CanUse(out act)) return true;
Expand Down
3 changes: 2 additions & 1 deletion RotationSolver/Rotations/Healer/WHM/WHM_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ private protected override bool HealSingleGCD(out IAction act)
if (AfflatusSolace.CanUse(out act)) return true;

//再生
if (Regen.Target.GetHealthRatio() > 0.4 && Regen.CanUse(out act)) return true;
if (Regen.CanUse(out act)
&& (IsMoving || Regen.Target.GetHealthRatio() > 0.4)) return true;

//救疗
if (Cure2.CanUse(out act)) return true;
Expand Down

0 comments on commit f3d5c40

Please sign in to comment.