From 8c463e87a4716641419dc09b8b15edbe821d0645 Mon Sep 17 00:00:00 2001 From: Brian Fabian Date: Sun, 7 Jul 2024 23:29:09 -0700 Subject: [PATCH] Support Wide Volley and Barrage replacement for Quick Nock/Ladonsbite --- XIVComboExpanded/Combos/BRD.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/XIVComboExpanded/Combos/BRD.cs b/XIVComboExpanded/Combos/BRD.cs index 65a7f45a..2ecb3171 100644 --- a/XIVComboExpanded/Combos/BRD.cs +++ b/XIVComboExpanded/Combos/BRD.cs @@ -64,6 +64,7 @@ public const byte RagingStrikes = 4, VenomousBite = 6, Bloodletter = 12, + WideVolley = 25, MagesBallad = 30, Windbite = 30, Barrage = 38, @@ -202,7 +203,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim if (IsEnabled(CustomComboPreset.BardShadowbiteFeature)) { - if (level >= BRD.Levels.Shadowbite && HasEffect(BRD.Buffs.HawksEye)) + if (level >= BRD.Levels.WideVolley && (HasEffect(BRD.Buffs.HawksEye) || HasEffect(BRD.Buffs.Barrage)) { if (IsEnabled(CustomComboPreset.BardShadowbiteBarrageFeature)) { @@ -210,7 +211,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim return BRD.Barrage; } - return BRD.Shadowbite; + return OriginalHook(BRD.Shadowbite); } } } @@ -472,4 +473,4 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim return actionID; } -} \ No newline at end of file +}