diff options
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs index 910d7cf..bd192dc 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | |||
@@ -1583,7 +1583,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1583 | { | 1583 | { |
1584 | int t = Util.EnvironmentTickCountSubtract(udpClient.m_lastStartpingTimeMS); | 1584 | int t = Util.EnvironmentTickCountSubtract(udpClient.m_lastStartpingTimeMS); |
1585 | int c = udpClient.m_pingMS; | 1585 | int c = udpClient.m_pingMS; |
1586 | c = 900 * c + 100 * t; | 1586 | c = 800 * c + 200 * t; |
1587 | c /= 1000; | 1587 | c /= 1000; |
1588 | udpClient.m_pingMS = c; | 1588 | udpClient.m_pingMS = c; |
1589 | return; | 1589 | return; |