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

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Taurenkey committed Jul 7, 2024
2 parents 5f4bb55 + a60b13d commit 5947fd8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion XIVSlothCombo/Combos/PvE/SMN.cs
Original file line number Diff line number Diff line change
Expand Up @@ -782,14 +782,17 @@ internal class SMN_DemiAbilities : CustomCombo

protected override uint Invoke(uint actionID, uint lastComboMove, float comboTime, byte level)
{
if (actionID is Aethercharge or DreadwyrmTrance or SummonBahamut or SummonPhoenix)
if (actionID is Aethercharge or DreadwyrmTrance or SummonBahamut or SummonPhoenix or SummonSolarBahamut)
{
if (IsOffCooldown(EnkindleBahamut) && OriginalHook(Ruin) is AstralImpulse)
return OriginalHook(EnkindleBahamut);

if (IsOffCooldown(EnkindlePhoenix) && OriginalHook(Ruin) is FountainOfFire)
return OriginalHook(EnkindlePhoenix);

if (IsOffCooldown(EnkindleSolarBahamut) && OriginalHook(Ruin) is UmbralImpulse)
return OriginalHook(EnkindleBahamut);

if ((OriginalHook(AstralFlow) is Deathflare && IsOffCooldown(Deathflare)) || (OriginalHook(AstralFlow) is Rekindle && IsOffCooldown(Rekindle)))
return OriginalHook(AstralFlow);

Expand Down

0 comments on commit 5947fd8

Please sign in to comment.