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

Commit

Permalink
Sub 100 compatibility, adjustments for 50 to 52
Browse files Browse the repository at this point in the history
  • Loading branch information
LTS-FFXIV authored Jul 27, 2024
1 parent 1a684db commit f39f029
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions BasicRotations/Melee/DRG_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,13 @@ protected override bool GeneralAbility(IAction nextGCD, out IAction? act)

protected override bool AttackAbility(IAction nextGCD, out IAction? act)
{
if (Player.HasStatus(true, StatusID.LanceCharge) && LanceChargePvE.Cooldown.ElapsedOneChargeAfterGCD(3))
if (Player.HasStatus(true, StatusID.LanceCharge))
{
if (GeirskogulPvE.CanUse(out act)) return true;
}

if (Player.HasStatus(true, StatusID.LanceCharge) && LanceChargePvE.Cooldown.ElapsedOneChargeAfterGCD(3))
if (BattleLitanyPvE.EnoughLevel && Player.HasStatus(true, StatusID.BattleLitany) && Player.HasStatus(true, StatusID.LanceCharge)
|| !BattleLitanyPvE.EnoughLevel && Player.HasStatus(true, StatusID.LanceCharge))
{
if (DragonfireDivePvE.CanUse(out act)) return true;
}
Expand All @@ -83,15 +84,14 @@ protected override bool AttackAbility(IAction nextGCD, out IAction? act)
if (WyrmwindThrustPvE.CanUse(out act, usedUp: true)) return true;
}

if (JumpPvE.CanUse(out act)) return true;
if (HighJumpPvE.CanUse(out act)) return true;
if (StardiverPvE.CanUse(out act)) return true;


if (StardiverPvE.CanUse(out act)) return true;
if (MirageDivePvE.CanUse(out act)) return true;
if (NastrondPvE.CanUse(out act)) return true;
if (StarcrossPvE.CanUse(out act)) return true;
if (RiseOfTheDragonPvE.CanUse(out act)) return true;
if (HighJumpPvE.CanUse(out act)) return true;

return base.AttackAbility(nextGCD, out act);
}
Expand All @@ -116,11 +116,11 @@ protected override bool GeneralGCD(out IAction? act)
if (FangAndClawPvE.CanUse(out act)) return true;
if (WheelingThrustPvE.CanUse(out act)) return true;

if (HeavensThrustPvE.CanUse(out act)) return true;
if (ChaoticSpringPvE.CanUse(out act)) return true;
if (FullThrustPvE.CanUse(out act)) return true;
if (ChaosThrustPvE.CanUse(out act)) return true;

if (LanceBarragePvE.CanUse(out act)) return true;
if (SpiralBlowPvE.CanUse(out act)) return true;
if (VorpalThrustPvE.CanUse(out act)) return true;
if (DisembowelPvE.CanUse(out act)) return true;

if (RaidenThrustPvE.CanUse(out act)) return true;
if (TrueThrustPvE.CanUse(out act)) return true;
Expand Down

0 comments on commit f39f029

Please sign in to comment.