aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs
index 1ec375f..c4bc6c8 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs
@@ -309,8 +309,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
309 // No need to resend anything. Keep it until it gets stale, 309 // No need to resend anything. Keep it until it gets stale,
310 // then it will be dropped. 310 // then it will be dropped.
311 // 311 //
312 if (((now - lastAck) > m_SilenceLimit) && 312 if ((((now - lastAck) > m_SilenceLimit) &&
313 m_NeedAck.Count > 0) 313 m_NeedAck.Count > 0) || m_NeedAck.Count == 0)
314 { 314 {
315 return; 315 return;
316 } 316 }