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

Commit

Permalink
Merge pull request #75 from FFXIV-CombatReborn/Drk-70-Quietus-change
Browse files Browse the repository at this point in the history
Fix for lvl 62-70 blood abilities
  • Loading branch information
Toshi authored May 8, 2024
2 parents 03efbcf + ba3c7a2 commit 0b7b772
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions BasicRotations/Tank/DRK_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ private bool UseBlood
{
// Conditions based on player statuses and ability cooldowns.
if (!DeliriumPvE.EnoughLevel) return true;
if (UnleashPvE.CanUse(out _) && !LivingShadowPvE.EnoughLevel) return true;
if (Player.HasStatus(true, StatusID.Delirium_1972) && LivingShadowPvE.Cooldown.IsCoolingDown) return true;
if ((DeliriumPvE.Cooldown.WillHaveOneChargeGCD(1) && !LivingShadowPvE.Cooldown.WillHaveOneChargeGCD(3)) || Blood >= 90 && !LivingShadowPvE.Cooldown.WillHaveOneChargeGCD(1)) return true;

Expand Down

0 comments on commit 0b7b772

Please sign in to comment.