1
0
mirror of https://github.com/lidgren/lidgren-network-gen3.git synced 2026-05-17 07:36:32 +09:00

Reliability fix

This commit is contained in:
lidgren
2010-06-26 21:06:44 +00:00
parent 51a4bfa5ea
commit 5857f9b92d
2 changed files with 11 additions and 5 deletions

View File

@@ -264,7 +264,7 @@ namespace Lidgren.Network
if (send.MessageType >= NetMessageType.UserReliableUnordered)
{
// store for reliability
if (send.NumSends == 0)
if (send.NumSends == 1)
m_unackedSends.Add(send);
}
else