Skip to content

Commit

Permalink
feat(Blood): Remove Player:ShouldStopCasting() check
Browse files Browse the repository at this point in the history
  • Loading branch information
Cilraaz committed May 29, 2024
1 parent 6b2e421 commit 2819254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HeroRotation_DeathKnight/Blood.lua
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ local function APL()
-- Interrupts
local ShouldReturn = Everyone.Interrupt(S.MindFreeze, Settings.CommonsDS.DisplayStyle.Interrupts, StunInterrupts); if ShouldReturn then return ShouldReturn; end
-- Display Pool icon if PoolDuringBlooddrinker is true
if Settings.Blood.PoolDuringBlooddrinker and Player:IsChanneling(S.Blooddrinker) and Player:BuffUp(S.BoneShieldBuff) and UnitsWithoutBloodPlague == 0 and not Player:ShouldStopCasting() and Player:CastRemains() > 0.2 then
if Settings.Blood.PoolDuringBlooddrinker and Player:IsChanneling(S.Blooddrinker) and Player:BuffUp(S.BoneShieldBuff) and UnitsWithoutBloodPlague == 0 and Player:CastRemains() > 0.2 then
if HR.CastAnnotated(S.Pool, false, "WAIT") then return "Pool During Blooddrinker"; end
end
-- auto_attack
Expand Down

0 comments on commit 2819254

Please sign in to comment.