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

Commit

Permalink
Fix for lvl 62-70 blood abilities
Browse files Browse the repository at this point in the history
  • Loading branch information
Tykku committed May 8, 2024
1 parent e549cbe commit ba3c7a2
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 ba3c7a2

Please sign in to comment.