Handle resends better

This commit is contained in:
Melanie Thielker
2009-05-02 20:08:26 +00:00
parent 0b2a34438c
commit 780f34275b
2 changed files with 6 additions and 1 deletions

View File

@@ -311,7 +311,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
// Packets this old get resent
//
if ((now - data.TickCount) > m_ResendTimeout && data.Sequence != 0)
if ((now - data.TickCount) > m_ResendTimeout && data.Sequence != 0 && !m_PacketQueue.Contains(data.Sequence))
{
if (resent < 20)
{