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

Commit

Permalink
Fix BRD Rain of Death check
Browse files Browse the repository at this point in the history
  • Loading branch information
Taurenkey committed Aug 10, 2024
1 parent ac2e6b6 commit b2b428f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XIVSlothCombo/Combos/PvE/BRD.cs
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim

if (LevelChecked(Bloodletter) && (empyrealCD > 1 || !LevelChecked(EmpyrealArrow)) && ((!openerFinished && IsOnCooldown(RagingStrikes)) || openerFinished))
{
uint rainOfDeathCharges = GetRemainingCharges(RainOfDeath);
uint rainOfDeathCharges = LevelChecked(RainOfDeath) ? GetRemainingCharges(RainOfDeath) : 0;

if (IsEnabled(CustomComboPreset.BRD_Simple_Pooling) && LevelChecked(WanderersMinuet))
{
Expand Down

0 comments on commit b2b428f

Please sign in to comment.