From 3089ee414a9997a982e8327da33605e7ea630fa6 Mon Sep 17 00:00:00 2001 From: Hekili Date: Sat, 2 Nov 2024 09:37:01 -1000 Subject: [PATCH] Extend forecast window for Assassination --- Core.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core.lua b/Core.lua index dcfdfb0bd..da6352cf8 100644 --- a/Core.lua +++ b/Core.lua @@ -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