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 #1670 from Tartarga/20240805_SCH
Browse files Browse the repository at this point in the history
[SCH] AoE Heal Lucid Dreaming Fix
  • Loading branch information
Tartarga authored Aug 10, 2024
2 parents cecc953 + 22a8bd9 commit 001c51b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion XIVSlothCombo/Combos/PvE/SCH.cs
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
// Lucid Dreaming
if (IsEnabled(CustomComboPreset.SCH_AoE_Heal_Lucid) &&
ActionReady(All.LucidDreaming) &&
LocalPlayer.CurrentMp < 1000)
LocalPlayer.CurrentMp < Config.SCH_AoE_Heal_LucidOption)
return All.LucidDreaming;

// Indomitability
Expand Down
3 changes: 3 additions & 0 deletions XIVSlothCombo/Window/Functions/UserConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2291,6 +2291,9 @@ internal static void Draw(CustomComboPreset preset, bool enabled)
if (preset is CustomComboPreset.SCH_ST_Heal_Esuna)
UserConfig.DrawSliderInt(0, 100, SCH.Config.SCH_ST_Heal_EsunaOption, "Stop using when below HP %. Set to Zero to disable this check");

if (preset is CustomComboPreset.SCH_AoE_Heal)
UserConfig.DrawSliderInt(4000, 9500, SCH.Config.SCH_AoE_Heal_LucidOption, "MP Threshold", 150, SliderIncrements.Hundreds);

if (preset is CustomComboPreset.SCH_DeploymentTactics)
{
UserConfig.DrawAdditionalBoolChoice(SCH.Config.SCH_DeploymentTactics_Adv, "Advanced Options", "", isConditionalChoice: true);
Expand Down

0 comments on commit 001c51b

Please sign in to comment.