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

Commit

Permalink
Merge pull request #50 from FFXIV-CombatReborn/Ninja-Rewrite
Browse files Browse the repository at this point in the history
Double Suiton Bug Fix
  • Loading branch information
Toshi authored Apr 19, 2024
2 parents a7178aa + e96bb07 commit c3145a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BasicRotations/Melee/NIN_Beta.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ private bool ChoiceNinjutsu(out IAction? act)
}

//Vulnerable
if (IsBurst && TrickAttackPvE.Cooldown.WillHaveOneCharge(18) && SuitonPvE.CanUse(out _))
if (IsBurst && TrickAttackPvE.Cooldown.WillHaveOneCharge(18) && SuitonPvE.CanUse(out _) && !Player.HasStatus(true, StatusID.Suiton))
{
SetNinjutsu(SuitonPvE);
return false;
Expand Down

0 comments on commit c3145a6

Please sign in to comment.