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

Commit

Permalink
AST dot fix and nuget bump
Browse files Browse the repository at this point in the history
  • Loading branch information
LTS-FFXIV committed Sep 29, 2024
1 parent c70e998 commit bd00751
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions BasicRotations/Healer/AST_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,12 @@ protected override bool GeneralGCD(out IAction? act)

if (GravityPvE.CanUse(out act)) return true;

if (CombustIiiPvE.CanUse(out act)) return true;
if (CombustIiPvE.CanUse(out act)) return true;
if (CombustPvE.CanUse(out act)) return true;
if (MaleficPvE.CanUse(out act)) return true;
if (CombustIiiPvE.CanUse(out act, skipStatusProvideCheck: DOTUpkeep)) return true;
if (CombustIiPvE.CanUse(out act, skipStatusProvideCheck: DOTUpkeep)) return true;
if (CombustPvE.CanUse(out act, skipStatusProvideCheck: DOTUpkeep)) return true;

return base.GeneralGCD(out act);
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/RebornRotations.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<Compile Include="Duty\EmanationDefault" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="RotationSolverReborn.Basic" Version="7.0.5.137" />
<PackageReference Include="RotationSolverReborn.Basic" Version="7.0.5.138" />
</ItemGroup>
<ItemGroup>
<Reference Include="Dalamud">
Expand Down

0 comments on commit bd00751

Please sign in to comment.