From 22a8bd97d8f8da55633355814f1c59c9f6a7710f Mon Sep 17 00:00:00 2001 From: Tartarga <109563717+Tartarga@users.noreply.github.com> Date: Mon, 5 Aug 2024 10:35:42 -0500 Subject: [PATCH] Scholar AoE Heal Lucid Dreaming Fix - Wired up the missing slider --- XIVSlothCombo/Combos/PvE/SCH.cs | 2 +- XIVSlothCombo/Window/Functions/UserConfig.cs | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/XIVSlothCombo/Combos/PvE/SCH.cs b/XIVSlothCombo/Combos/PvE/SCH.cs index 3b5113bbf..4275613b8 100644 --- a/XIVSlothCombo/Combos/PvE/SCH.cs +++ b/XIVSlothCombo/Combos/PvE/SCH.cs @@ -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 diff --git a/XIVSlothCombo/Window/Functions/UserConfig.cs b/XIVSlothCombo/Window/Functions/UserConfig.cs index 17d851fa5..5363b6e8d 100644 --- a/XIVSlothCombo/Window/Functions/UserConfig.cs +++ b/XIVSlothCombo/Window/Functions/UserConfig.cs @@ -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);