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

Commit

Permalink
Update hard coded CD check
Browse files Browse the repository at this point in the history
  • Loading branch information
Taurenkey committed Jul 11, 2024
1 parent b4e5b96 commit 341415e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions XIVSlothCombo/Combos/PvE/WAR.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
return Onslaught;
}
}

if (IsEnabled(CustomComboPreset.WAR_ST_StormsPath_PrimalRend) && HasEffect(Buffs.PrimalRendReady) && LevelChecked(PrimalRend) && GetCooldownRemainingTime(InnerRelease) < 57.5)
if (IsEnabled(CustomComboPreset.WAR_ST_StormsPath_PrimalRend) && HasEffect(Buffs.PrimalRendReady) && LevelChecked(PrimalRend) && !JustUsed(InnerRelease, GetCooldown(actionID).CooldownTotal))
{
if (IsEnabled(CustomComboPreset.WAR_ST_StormsPath_PrimalRend_CloseRange) && !IsMoving && (GetTargetDistance() <= 1 || GetBuffRemainingTime(Buffs.PrimalRendReady) <= 10))
return PrimalRend;
Expand Down

0 comments on commit 341415e

Please sign in to comment.