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

Commit

Permalink
Merge pull request #1497 from zbee/whm
Browse files Browse the repository at this point in the history
WHM Support disabling of Action Change
  • Loading branch information
Taurenkey authored Jul 11, 2024
2 parents 195adb1 + 8c47ad9 commit ef6254a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions XIVSlothCombo/Combos/PvE/WHM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
if (IsEnabled(CustomComboPreset.WHM_ST_MainCombo_GlareIV)
&& HasEffect(Buffs.SacredSight)
&& GetBuffStacks(Buffs.SacredSight) > 0)
return OriginalHook(PresenceOfMind);
return OriginalHook(Glare4);

if (IsEnabled(CustomComboPreset.WHM_ST_MainCombo_LilyOvercap) && LevelChecked(AfflatusRapture) &&
(liliesFull || liliesNearlyFull))
Expand Down Expand Up @@ -331,7 +331,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
return PlenaryIndulgence;

if (IsEnabled(CustomComboPreset.WHM_AoEHeals_DivineCaress) && divineCaressReady)
return DivineCaress;
return OriginalHook(DivineCaress);

if (IsEnabled(CustomComboPreset.WHM_AoEHeals_Lucid) && canWeave && lucidReady)
return All.LucidDreaming;
Expand Down Expand Up @@ -466,7 +466,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
if (IsEnabled(CustomComboPreset.WHM_AoE_DPS_GlareIV)
&& HasEffect(Buffs.SacredSight)
&& GetBuffStacks(Buffs.SacredSight) > 0)
return OriginalHook(PresenceOfMind);
return OriginalHook(Glare4);

if (IsEnabled(CustomComboPreset.WHM_AoE_DPS_LilyOvercap) && LevelChecked(AfflatusRapture) &&
(liliesFullNoBlood || liliesNearlyFull))
Expand Down

0 comments on commit ef6254a

Please sign in to comment.