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

Commit

Permalink
Fixes SMN_EDFester feature not applying to Necrotize.
Browse files Browse the repository at this point in the history
  • Loading branch information
Genesis-Nova committed Jul 12, 2024
1 parent 321af96 commit 3b33a34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion XIVSlothCombo/Combos/PvE/SMN.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ public const uint
Fester = 181,
EnergySiphon = 16510,
Painflare = 3578,
Necrotize = 36990,
SearingFlash = 36991,

// Revive
Expand Down Expand Up @@ -192,7 +193,7 @@ internal class SMN_EDFester : CustomCombo

protected override uint Invoke(uint actionID, uint lastComboMove, float comboTime, byte level)
{
if (actionID == Fester)
if (actionID is Fester or Necrotize)
{
var gauge = GetJobGauge<SMNGauge>();
if (HasEffect(Buffs.FurtherRuin) && IsOnCooldown(EnergyDrain) && !gauge.HasAetherflowStacks && IsEnabled(CustomComboPreset.SMN_EDFester_Ruin4))
Expand Down

0 comments on commit 3b33a34

Please sign in to comment.