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 #67 from FFXIV-CombatReborn/Warrior-Beta-Fixes
Browse files Browse the repository at this point in the history
Fix for war beta
  • Loading branch information
Toshi authored Apr 30, 2024
2 parents 9885d8f + 7d919f9 commit f6f5860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BasicRotations/Tank/WAR_Beta.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ protected override bool GeneralGCD(out IAction? act)
if (!Player.WillStatusEndGCD(3, 0, true, StatusID.SurgingTempest))
{
// If the player is not moving, is in a burst status, and Primal Rend can be used on a target within a distance of 1, use Primal Rend.
if (!IsMoving && /*IsBurstStatus &&*/ PrimalRendPvE.CanUse(out act, skipAoeCheck: true))
if (!IsMoving && PrimalRendPvE.CanUse(out act, skipAoeCheck: true))
{
if (PrimalRendPvE.Target.Target?.DistanceToPlayer() < 1) return true;
}
Expand Down

0 comments on commit f6f5860

Please sign in to comment.