Skip to content

Commit

Permalink
fix(Affliction): Fix Soul Rot DisplayStyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Cilraaz committed Nov 4, 2024
1 parent 0fafd0e commit 2fd764b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HeroRotation_Warlock/Affliction.lua
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ local function Cleave()
end
-- soul_rot,if=(variable.vt_ps_up)&active_dot.agony=2
if S.SoulRot:IsReady() and (S.AgonyDebuff:AuraActiveCount() == 2) then
if Cast(S.SoulRot, nil, nil, not Target:IsSpellInRange(S.SoulRot)) then return "soul_rot cleave 18"; end
if Cast(S.SoulRot, nil, Settings.CommonsDS.DisplayStyle.SoulRot, not Target:IsSpellInRange(S.SoulRot)) then return "soul_rot cleave 18"; end
end
end
-- summon_darkglare,if=variable.cd_dots_up
Expand Down Expand Up @@ -826,7 +826,7 @@ local function APL()
end
-- soul_rot,if=variable.vt_ps_up
if S.SoulRot:IsReady() then
if Cast(S.SoulRot, nil, nil, not Target:IsSpellInRange(S.SoulRot)) then return "soul_rot main 24"; end
if Cast(S.SoulRot, nil, Settings.CommonsDS.DisplayStyle.SoulRot, not Target:IsSpellInRange(S.SoulRot)) then return "soul_rot main 24"; end
end
end
-- summon_darkglare,if=variable.cd_dots_up&(debuff.shadow_embrace.stack=debuff.shadow_embrace.max_stack)
Expand Down

0 comments on commit 2fd764b

Please sign in to comment.