From 704652c782dddf58a614df8ab85914e10a509160 Mon Sep 17 00:00:00 2001 From: edewen Date: Thu, 22 Aug 2024 13:52:38 -0400 Subject: [PATCH] Heavy to SS barrage fix Fixed barrage buff not being accounted for on heavy to ss feature --- XIVSlothCombo/Combos/PvE/BRD.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/XIVSlothCombo/Combos/PvE/BRD.cs b/XIVSlothCombo/Combos/PvE/BRD.cs index 782de97d2..fa762902d 100644 --- a/XIVSlothCombo/Combos/PvE/BRD.cs +++ b/XIVSlothCombo/Combos/PvE/BRD.cs @@ -135,10 +135,8 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim return BlastArrow; } - if (HasEffect(Buffs.HawksEye)) - return LevelChecked(RefulgentArrow) - ? RefulgentArrow - : StraightShot; + if (HasEffect(Buffs.HawksEye) || HasEffect(Buffs.Barrage)) + return OriginalHook(StraightShot); } return actionID;