Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
Heavy to SS barrage fix
Browse files Browse the repository at this point in the history
Fixed barrage buff not being accounted for on heavy to ss feature
  • Loading branch information
edewen committed Aug 22, 2024
1 parent c573aff commit 704652c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions XIVSlothCombo/Combos/PvE/BRD.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 704652c

Please sign in to comment.