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

Commit

Permalink
Merge pull request #92 from FFXIV-CombatReborn/DT-WAR-Fixes
Browse files Browse the repository at this point in the history
Furious when not Burgeoning
  • Loading branch information
Tykku authored Jul 17, 2024
2 parents 9d47a14 + b64a7e2 commit 1163ddf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions BasicRotations/Tank/WAR_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ public sealed class WAR_Default : WarriorRotation
#region oGCD Logic
protected override bool AttackAbility(IAction nextGCD, out IAction? act)
{
if (InfuriatePvE.CanUse(out act, gcdCountForAbility: 3)) return true;
act = null;
if (!Player.HasStatus(true, StatusID.BurgeoningFury) && InfuriatePvE.CanUse(out act, gcdCountForAbility: 3)) return true;

if (CombatElapsedLessGCD(1)) return false;

Expand All @@ -64,7 +65,7 @@ protected override bool AttackAbility(IAction nextGCD, out IAction? act)

if (IsBurstStatus)
{
if (InfuriatePvE.CanUse(out act, usedUp: true)) return true;
if (!Player.HasStatus(true, StatusID.BurgeoningFury) && InfuriatePvE.CanUse(out act, usedUp: true)) return true;
}

if (CombatElapsedLessGCD(4)) return false;
Expand Down

0 comments on commit 1163ddf

Please sign in to comment.