Skip to content

Commit

Permalink
Fix projectile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Hekili committed Oct 7, 2024
1 parent f501ef3 commit 862b878
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion State.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5335,7 +5335,7 @@ local mt_default_action = {

return max( 0, ability.lastCast + max( ability.flightTime, 0.25 ) - state.query_time )
end
return max( state:InFlightRemains( t.action ), ability.isProjectile and ability.lastCast + 0.25 - state.query_time )
return max( state:InFlightRemains( t.action ), ability.isProjectile and ability.lastCast + 0.25 - state.query_time or 0 )

elseif k == "channeling" then
return state:IsChanneling( t.action )
Expand Down

0 comments on commit 862b878

Please sign in to comment.