From 4f051905375fcef1570d35c88f3a54b09a6d53d0 Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 14 Jun 2020 00:29:36 +0000 Subject: [PATCH] =?UTF-8?q?=E2=80=9Esrc/DataValue.cs=E2=80=9C=20=C3=A4nder?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/DataValue.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/DataValue.cs b/src/DataValue.cs index 35a57de..1d9bd7c 100644 --- a/src/DataValue.cs +++ b/src/DataValue.cs @@ -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); } }