You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the class NetConnection, the variable m_sentPingTime receives a value at InitializePing() that SendPing() overwritten a little after without being readed.
What was the intention of this lines?
// randomize ping sent time (0.25 - 1.0 x ping interval)m_sentPingTime=now;m_sentPingTime-=(m_peerConfiguration.PingInterval *0.25f);// delay ping for a little whilem_sentPingTime-=(MWCRandom.Instance.NextSingle()*(m_peerConfiguration.PingInterval *0.75f));
Thank you
The text was updated successfully, but these errors were encountered:
In the class NetConnection, the variable m_sentPingTime receives a value at InitializePing() that SendPing() overwritten a little after without being readed.
What was the intention of this lines?
Thank you
The text was updated successfully, but these errors were encountered: