Skip to content

Commit

Permalink
Extend forecast window for Assassination
Browse files Browse the repository at this point in the history
  • Loading branch information
Hekili committed Nov 2, 2024
1 parent 8beb905 commit 3089ee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1810,7 +1810,7 @@ function Hekili.Update( initial )
if class.file == "DEATHKNIGHT" then
state:SetConstraint( 0, min( state.delayMax, max( 0.01 + state.rune.cooldown * 2, 10 ) ) )
else
state:SetConstraint( 0, min( state.delayMax, 10 ) )
state:SetConstraint( 0, min( state.delayMax, state.spec.assassination and 15 or 10 ) )
end

if hadProj and debug then Hekili:Debug( "[ ** ] No recommendation before queued event(s), checking recommendations after %.2f.", state.offset ) end
Expand Down

0 comments on commit 3089ee4

Please sign in to comment.