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

Commit

Permalink
MNK fix and nuget bump (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
LTS-FFXIV authored Jul 17, 2024
1 parent 9893e28 commit 2a4c023
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions BasicRotations/Melee/MNK_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private bool OpoOpoForm(out IAction? act)
{
if (ArmOfTheDestroyerPvE.CanUse(out act)) return true; // Arm Of The Destoryer
if (LeapingOpoPvE.CanUse(out act)) return true; // Leaping Opo
if (DragonKickPvE.CanUse(out act) && OpoOpoFury < 1) return true; // Dragon Kick
if (DragonKickPvE.CanUse(out act)) return true; // Dragon Kick
if (BootshinePvE.CanUse(out act)) return true; //Bootshine
return false;
}
Expand All @@ -89,7 +89,7 @@ private bool RaptorForm(out IAction? act)
|| Player.WillStatusEndGCD(7, 0, true, StatusID.DisciplinedFist)
&& UseLunarPerfectBalance) && TwinSnakesPvE.CanUse(out act)) return true; //Twin Snakes*/
if (RisingRaptorPvE.CanUse(out act)) return true; //Rising Raptor
if (TwinSnakesPvE.CanUse(out act) && RaptorFury < 1) return true; //Twin Snakes
if (TwinSnakesPvE.CanUse(out act)) return true; //Twin Snakes
if (TrueStrikePvE.CanUse(out act)) return true; //True Strike
return false;
}
Expand All @@ -100,7 +100,7 @@ private bool CoerlForm(out IAction? act)
//if (UseLunarPerfectBalance && DemolishPvE.CanUse(out act, skipStatusProvideCheck: true)) return true;
//&& (DemolishPvE.Target.Target?.WillStatusEndGCD(7, 0, true, StatusID.Demolish) ?? false)) return true;
if (PouncingCoeurlPvE.CanUse(out act)) return true; // Pouncing Coeurl
if (DemolishPvE.CanUse(out act) && CoeurlFury < 1) return true; // Demolish
if (DemolishPvE.CanUse(out act)) return true; // Demolish
if (SnapPunchPvE.CanUse(out act)) return true; // Snap Punch
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion BasicRotations/RebornRotations.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<None Remove="Duty\PVPRotations\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="RotationSolverReborn.Basic" Version="7.0.1.2" />
<PackageReference Include="RotationSolverReborn.Basic" Version="7.0.1.10" />
</ItemGroup>
<ItemGroup>
<Reference Include="Dalamud">
Expand Down

0 comments on commit 2a4c023

Please sign in to comment.