Skip to content

Commit

Permalink
Meditation reminder Level <15 fix [PUSH]
Browse files Browse the repository at this point in the history
  • Loading branch information
Grammernatzi committed Aug 10, 2024
1 parent 35a9a82 commit 365c2ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion XIVComboExpanded/Combos/MNK.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ internal class MonkMeditationReminder : CustomCombo
protected override uint Invoke(uint actionID, uint lastComboMove, float comboTime, byte level)
{
var gauge = GetJobGauge<MNKGauge>();
return !HasCondition(ConditionFlag.InCombat) && gauge.Chakra < 5 ? OriginalHook(MNK.Meditation) : actionID;
return !HasCondition(ConditionFlag.InCombat) && gauge.Chakra < 5 && CanUseAction(OriginalHook(MNK.Meditation)) ? OriginalHook(MNK.Meditation) : actionID;
}
}

Expand Down
2 changes: 1 addition & 1 deletion XIVComboExpanded/XIVComboExpanded.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Authors>attick, daemitus, alymphocyte, grammernatzi</Authors>
<Company>-</Company>
<Version>1.5.0.51</Version>
<Version>1.5.0.52</Version>
<Description>This plugin condenses combos and mutually exclusive abilities onto a single button.</Description>
<Copyright>Copyaaaaaaaaaaaa</Copyright>
<PackageProjectUrl>https://github.com/grammernatzi/XIVComboPluginExpandedest</PackageProjectUrl>
Expand Down

0 comments on commit 365c2ad

Please sign in to comment.