„src/DataValue.cs“ ändern

master
Chris 2020-06-14 00:29:36 +00:00
parent 51590154e4
commit 4f05190537
1 changed files with 5 additions and 2 deletions

View File

@ -156,11 +156,14 @@ namespace OpenSim.Modules.DataValue
if (m_enabledRateLimit)
{
if (m_rateLimit >= 1500)
if (m_rateLimit >= 1000)
System.Threading.Thread.Sleep(300);
if (m_rateLimit >= 3000)
if (m_rateLimit >= 2000)
System.Threading.Thread.Sleep(600);
if (m_rateLimit >= 3500)
System.Threading.Thread.Sleep(900);
}
}