From 780e41cc83e8ed213f24dda350453705585f5ac4 Mon Sep 17 00:00:00 2001 From: LTS-FFXIV <127939494+LTS-FFXIV@users.noreply.github.com> Date: Sun, 15 Sep 2024 23:54:50 -0500 Subject: [PATCH] stuff --- BasicRotations/Limited Jobs/BLU_Default.cs | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/BasicRotations/Limited Jobs/BLU_Default.cs b/BasicRotations/Limited Jobs/BLU_Default.cs index c9f9f4e..8fe249d 100644 --- a/BasicRotations/Limited Jobs/BLU_Default.cs +++ b/BasicRotations/Limited Jobs/BLU_Default.cs @@ -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 @@ -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