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 +}