From 1c5ac6a6cdff3b58b60815b04c206d0ade7d2b62 Mon Sep 17 00:00:00 2001 From: Khayle Date: Tue, 2 Jul 2024 03:57:11 +0200 Subject: [PATCH] [PUSH] 1.5.0.2 - Tentative PLD fix for Blade of Honor Imperator data Blade of Honor Ready check --- XIVComboExpanded/Combos/PLD.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/XIVComboExpanded/Combos/PLD.cs b/XIVComboExpanded/Combos/PLD.cs index 43085bba..156f0d5f 100644 --- a/XIVComboExpanded/Combos/PLD.cs +++ b/XIVComboExpanded/Combos/PLD.cs @@ -31,6 +31,7 @@ public const uint BladeOfValor = 25750, Supplication = 36918, Sepulchre = 36919, + Imperator = 36921, BladeOfHonor = 36922; public static class Buffs @@ -43,7 +44,8 @@ public const ushort ConfiteorReady = 3019, SupplicationReady = 3827, SepulchreReady = 3828, - GoringBladeReady = 3847; + GoringBladeReady = 3847, + BladeOfHonorReady = 3831; } public static class Debuffs @@ -284,7 +286,7 @@ internal class PaladinRequiescat : PaladinCombo protected override uint Invoke(uint actionID, uint lastComboMove, float comboTime, byte level) { - if (actionID == PLD.Requiescat) + if (actionID == PLD.Requiescat || actionID == PLD.Imperator) { if (IsEnabled(CustomComboPreset.PaladinRequiescatCombo)) { @@ -317,7 +319,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim if (original != PLD.Confiteor) return original; - if (HasEffect(PLD.Buffs.ConfiteorReady)) + if (HasEffect(PLD.Buffs.ConfiteorReady) || HasEffect(PLD.Buffs.BladeOfHonorReady)) return PLD.Confiteor; }