Skip to content

Commit d7e51f7

Browse files
authored
Merge pull request #857 from FFXIV-CombatReborn/lowlevelninja
Fix for low level NIN mudra usage
2 parents 9b25d4e + 31dbd8f commit d7e51f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

BasicRotations/Melee/NIN_Default.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ private bool ChoiceNinjutsu(out IAction? act)
343343
return false;
344344
}
345345
}
346-
else if ((TenPvE.Cooldown.CurrentCharges == TenPvE.Cooldown.MaxCharges) || TenPvE.Cooldown.HasOneCharge && (ShadowWalkerNeeded || InTrickAttack || TenPvE.Cooldown.WillHaveXChargesGCD(2, 2, 0)))
346+
else if ((TenPvE.Cooldown.CurrentCharges == TenPvE.Cooldown.MaxCharges) || (TenPvE.Cooldown.HasOneCharge && (ShadowWalkerNeeded || InTrickAttack || TenPvE.Cooldown.WillHaveXChargesGCD(2, 2, 0))))
347347
{
348348
// Chooses buffs or AoE actions based on combat conditions and cooldowns.
349349
// For instance, setting Huton for speed buff or choosing AoE Ninjutsu like Katon or Doton based on enemy positioning.

RotationSolver.Basic/Rotations/Basic/NinjaRotation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public partial class NinjaRotation
2626
/// <summary>
2727
/// Do you need to prep or currently use shadowwalker
2828
/// </summary>
29-
public bool ShadowWalkerNeeded => (TrickAttackPvE.EnoughLevel && TrickAttackPvE.Cooldown.WillHaveOneCharge(18)) || (KunaisBanePvE.EnoughLevel && KunaisBanePvE.Cooldown.WillHaveOneCharge(18));
29+
public bool ShadowWalkerNeeded => ((TrickAttackPvE.EnoughLevel && TrickAttackPvE.Cooldown.WillHaveOneCharge(18)) || (KunaisBanePvE.EnoughLevel && KunaisBanePvE.Cooldown.WillHaveOneCharge(18)) && SuitonPvE.EnoughLevel);
3030

3131
/// <summary>
3232
/// Determines if Trick Attack is in its effective period.

0 commit comments

Comments
 (0)