diff --git a/XIVComboExpanded/Combos/PLD.cs b/XIVComboExpanded/Combos/PLD.cs index 06268937a..ceb920b95 100644 --- a/XIVComboExpanded/Combos/PLD.cs +++ b/XIVComboExpanded/Combos/PLD.cs @@ -109,7 +109,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim if (actionID == PLD.RageOfHalone || actionID == PLD.RoyalAuthority) { // During FoF, prioritize the higher-potency Divine Might cast over Atonement and the normal combo chain - if (IsEnabled(CustomComboPreset.PaladinRoyalAuthorityDivineMightFeature)) + if (IsEnabled(CustomComboPreset.PaladinRoyalAuthorityFightOrFlightFeature)) { if (HasEffect(PLD.Buffs.FightOrFlight) && HasEffect(PLD.Buffs.DivineMight) && HasMp(PLD.HolySpirit)) return PLD.HolySpirit; diff --git a/XIVComboExpanded/CustomComboPreset.cs b/XIVComboExpanded/CustomComboPreset.cs index 78f93bcbe..aac55c50d 100644 --- a/XIVComboExpanded/CustomComboPreset.cs +++ b/XIVComboExpanded/CustomComboPreset.cs @@ -611,9 +611,15 @@ public enum CustomComboPreset [CustomComboInfo("Royal Authority Combo", "Replace Royal Authority with its combo chain.", PLD.JobID)] PaladinRoyalAuthorityCombo = 1902, - [CustomComboInfo("Royal Authority Divine Might Feature", "Replace Royal Authority with Holy Spirit when Divine Might is active.", PLD.JobID)] + [ParentCombo(PaladinRoyalAuthorityCombo)] + [CustomComboInfo("Royal Authority Divine Might Feature", "Replace Royal Authority with Holy Spirit when Divine Might would overcap.", PLD.JobID)] PaladinRoyalAuthorityDivineMightFeature = 1912, + [ParentCombo(PaladinRoyalAuthorityCombo)] + [CustomComboInfo("Royal Authority Fight or Flight Feature", "Replace Royal Authority with Holy Spirit during Fight or Flight when Divine Might is active.", PLD.JobID)] + PaladinRoyalAuthorityFightOrFlightFeature = 1915, + + [ParentCombo(PaladinRoyalAuthorityCombo)] [CustomComboInfo("Royal Authority Atonement Feature", "Replace Royal Authority with Atonement when under the effect of Sword Oath.", PLD.JobID)] PaladinRoyalAuthorityAtonementFeature = 1903,