reduce ping cliping lower limit

avinationmerge
UbitUmarov 2014-08-14 21:18:58 +01:00
parent 538a95ff1e
commit 0ae8fed4c2
1 changed files with 2 additions and 2 deletions

View File

@ -170,8 +170,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
{
get
{
if (m_pingMS < 20)
return 20;
if (m_pingMS < 10)
return 10;
if(m_pingMS > 2000)
return 2000;
return m_pingMS;