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 #237 from FFXIV-CombatReborn/nothing-dont-worry-ab…
Browse files Browse the repository at this point in the history
…out-it

stuff
  • Loading branch information
LTS-FFXIV authored Sep 16, 2024
2 parents c2a8aff + 780e41c commit 6705cf6
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions BasicRotations/Limited Jobs/BLU_Default.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
namespace DefaultRotations.Magical;

[Rotation("Default", CombatType.PvE, GameVersion = "7.00")]
[Rotation("DOES NOT WORK", CombatType.PvE, GameVersion = "7.05")]
[SourceCode(Path = "main/DefaultRotations/Limited Jobs/BLU_Default.cs")]
[Api(1)]
[Api(4)]
public sealed class Blue_Default : BlueMageRotation
{
#region Countdown logic
Expand Down Expand Up @@ -46,23 +46,17 @@ protected override bool MoveForwardAbility(IAction nextGCD, out IAction? act)
protected override bool MoveForwardGCD(out IAction? act)
{
act = null;

return base.MoveForwardGCD(out act);
}

protected override bool GeneralGCD(out IAction? act)
{
act = null;

if (TinglePvE.CanUse(out act)) return true;
if (WaterCannonPvE.CanUse(out act)) return true;
return base.GeneralGCD(out act);
}

private bool AttackGCD(out IAction? act, bool burst)
{
act = null;

return false;
}
#endregion

#region Extra Methods
Expand Down

0 comments on commit 6705cf6

Please sign in to comment.