Skip to content

Commit

Permalink
Merge pull request #1744 from Kagekazu/DRG_AoE_Lvlcheck
Browse files Browse the repository at this point in the history
[DRG] fix aoe disembowel check
Boop for Kage
  • Loading branch information
Genesis-Nova authored Aug 22, 2024
2 parents 7a88598 + 75499a3 commit 1aa95d9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions XIVSlothCombo/Combos/PvE/DRG.cs
Original file line number Diff line number Diff line change
Expand Up @@ -583,9 +583,9 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
return CoerthanTorment;
}
}
return HasEffect(Buffs.PowerSurge) || LevelChecked(SonicThrust)
? OriginalHook(DoomSpike)
: OriginalHook(TrueThrust);
return !HasEffect(Buffs.PowerSurge) && !LevelChecked(SonicThrust)
? OriginalHook(TrueThrust)
: OriginalHook(DoomSpike);
}
return actionID;
}
Expand Down Expand Up @@ -748,7 +748,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
}
}
return IsEnabled(CustomComboPreset.DRG_AoE_Disembowel) &&
(!HasEffect(Buffs.PowerSurge) || !LevelChecked(SonicThrust))
!HasEffect(Buffs.PowerSurge) && !LevelChecked(SonicThrust)
? OriginalHook(TrueThrust)
: OriginalHook(DoomSpike);
}
Expand Down

0 comments on commit 1aa95d9

Please sign in to comment.