Skip to content

Commit

Permalink
Merge pull request #164 from edewen/Nin-pvp
Browse files Browse the repository at this point in the history
[PVP] Nin Seiton Unsealed fix
  • Loading branch information
Taurenkey authored Dec 10, 2024
2 parents 63df773 + 0f007ec commit 0048dc3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion WrathCombo/Combos/PvP/NINPVP.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ internal const ushort
Hidden = 1316,
Bunshin = 2010,
ShadeShift = 2011,
SeitonUnsealed = 3192,
FleetingRaijuReady = 3211,
ZeshoMeppoReady = 4305;
}
Expand Down Expand Up @@ -88,7 +89,9 @@ protected override uint Invoke(uint actionID, uint lastComboActionID, float comb
{

// Seiton Tenchu priority for targets below 50% HP
if (IsEnabled(CustomComboPreset.NINPvP_ST_SeitonTenchu) && GetTargetHPPercent() < GetOptionValue(Config.NINPVP_SeitonTenchu) && IsLB1Ready)
if (IsEnabled(CustomComboPreset.NINPvP_ST_SeitonTenchu) &&
(GetTargetHPPercent() < GetOptionValue(Config.NINPVP_SeitonTenchu) && IsLB1Ready || //Limit Break
HasEffect(Buffs.SeitonUnsealed))) // Limit Break followup not tied to health slider
return OriginalHook(SeitonTenchu);

// Zesho Meppo
Expand Down

0 comments on commit 0048dc3

Please sign in to comment.