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 #84 from FFXIV-CombatReborn/IcWaDev
Browse files Browse the repository at this point in the history
Modified Summoning conditions around bahamut and phoenix in the waitinng of gauge update
  • Loading branch information
IncognitoWater authored Jul 15, 2024
2 parents 201a5cf + 53abdb5 commit a334bf7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions BasicRotations/Magical/SMN_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,10 @@ protected override bool EmergencyAbility(IAction nextGCD, out IAction? act)
#region GCD Logic
protected override bool GeneralGCD(out IAction? act)
{
bool inBigInvocation = InBahamut || InPhoenix || InSolarBahamut;
bool inLittleInvocation = InIfrit || InGaruda || InTitan;

//if (SummonCarbunclePvE.CanUse(out act)) return true;

if (!inLittleInvocation && SummonBahamutPvE.CanUse(out act)) return true;
if (SummonBahamutPvE.CanUse(out act)) return true;
if (SummonPhoenixPvE.CanUse(out act)) return true;
if ((Player.HasStatus(false, StatusID.SearingLight) || SearingLightPvE.Cooldown.IsCoolingDown) && SummonBahamutPvE.CanUse(out act)) return true;
if (IsBurst && (!SearingLightPvE.Cooldown.IsCoolingDown && SummonSolarBahamutPvE.CanUse(out act))) return true;

Expand Down

0 comments on commit a334bf7

Please sign in to comment.