cast disturb recovery fix

This commit is contained in:
Mark Sturgill 2013-10-06 15:10:51 -07:00
parent 306a96bc81
commit 92aeef0297

View file

@ -633,7 +633,7 @@ namespace Server.Spells
if ( Core.AOS )
return TimeSpan.Zero;
double delay = 1.0 - Math.Sqrt((Core.TickCount - m_StartCastTime) / 1000 / GetCastDelay().TotalSeconds);
double delay = 1.0 - Math.Sqrt((Core.TickCount - m_StartCastTime) / 1000.0 / GetCastDelay().TotalSeconds);
if ( delay < 0.2 )
delay = 0.2;