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

Commit

Permalink
Merge pull request #161 from FFXIV-CombatReborn/trickattackwindowfix
Browse files Browse the repository at this point in the history
InTrickAttack window now includes Kunai's Bane logic
  • Loading branch information
LTS-FFXIV authored Jul 29, 2024
2 parents 3c15694 + 959689c commit cc8736c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BasicRotations/Melee/NIN_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ protected override bool GeneralGCD(out IAction? act)
private IBaseAction? _ninActionAim = null;

// Determines if Trick Attack is in its effective period.
private bool InTrickAttack => TrickAttackPvE.Cooldown.IsCoolingDown && !TrickAttackPvE.Cooldown.ElapsedAfter(17);
private bool InTrickAttack => (KunaisBanePvE.Cooldown.IsCoolingDown || TrickAttackPvE.Cooldown.IsCoolingDown) && (!KunaisBanePvE.Cooldown.ElapsedAfter(17) || !TrickAttackPvE.Cooldown.ElapsedAfter(17));

// Determines if Mug is in its effective period.
private bool InMug => MugPvE.Cooldown.IsCoolingDown && !MugPvE.Cooldown.ElapsedAfter(19);
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.39" />
<PackageReference Include="RotationSolverReborn.Basic" Version="7.0.1.40" />
</ItemGroup>
<ItemGroup>
<Reference Include="Dalamud">
Expand Down

0 comments on commit cc8736c

Please sign in to comment.