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

Commit

Permalink
Update wording and weave implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Taurenkey committed Aug 10, 2024
1 parent c434866 commit 9934d51
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion XIVSlothCombo/Combos/CustomComboPreset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4157,7 +4157,7 @@ The three digets after RDM.JobID can be used to reorder items in the list
WHM_AoE_DPS_LilyOvercap = 19193,

[ParentCombo(WHM_AoE_DPS)]
[CustomComboInfo("Presence of Mind Option", "Adds Presence of Mind to the AoE combo with GCD delay.", WHM.JobID, 25, "", "")]
[CustomComboInfo("Presence of Mind Option", "Adds Presence of Mind to the AoE combo, this will delay your GCD by default.", WHM.JobID, 25, "", "")]
WHM_AoE_DPS_PresenceOfMind = 19195,

[ParentCombo(WHM_AoE_DPS)]
Expand Down
2 changes: 1 addition & 1 deletion XIVSlothCombo/Combos/PvE/WHM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
HasBattleTarget())
return Variant.VariantSpiritDart;

if (CanSpellWeave(actionID) || IsMoving)
if (CanSpellWeave(ActionWatching.LastSpell) || IsMoving)
{
if (IsEnabled(CustomComboPreset.WHM_AoE_DPS_PresenceOfMind) && ActionReady(PresenceOfMind))
return PresenceOfMind;
Expand Down
3 changes: 2 additions & 1 deletion XIVSlothCombo/Window/Functions/UserConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2548,7 +2548,8 @@ internal static void Draw(CustomComboPreset preset, bool enabled)
UserConfig.DrawSliderInt(4000, 9500, WHM.Config.WHM_AoEDPS_Lucid, "Set value for your MP to be at or under for this feature to work", 150, SliderIncrements.Hundreds);

if (preset == CustomComboPreset.WHM_AoE_DPS_PresenceOfMind)
UserConfig.DrawAdditionalBoolChoice(WHM.Config.WHM_AoEDPS_PresenceOfMindWeave, "Only Weave but will delay it. Holy has no window.", "");
UserConfig.DrawAdditionalBoolChoice(WHM.Config.WHM_AoEDPS_PresenceOfMindWeave, "Only Weave or Use Whilst Moving.", "Holy has no weave window so this can only be used to weave against healing or single target damage spells.\n\n" +
"This will minimize the amount of GCD delay you will get but reduce the frequency it will be used.");

if (preset == CustomComboPreset.WHM_AoEHeals_Lucid)
UserConfig.DrawSliderInt(4000, 9500, WHM.Config.WHM_AoEHeals_Lucid, "Set value for your MP to be at or under for this feature to work", 150, SliderIncrements.Hundreds);
Expand Down

0 comments on commit 9934d51

Please sign in to comment.