Revert "flush"

This reverts commit 459cfccff5.
This commit is contained in:
Sardelka
2022-07-30 11:44:14 +08:00
parent eb74bcf987
commit 3015ffe3ba
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ namespace RageCoop.Client
// 623c92c287cc392406e7aaaac1c0f3b0 = RAGECOOP // 623c92c287cc392406e7aaaac1c0f3b0 = RAGECOOP
NetPeerConfiguration config = new NetPeerConfiguration("623c92c287cc392406e7aaaac1c0f3b0") NetPeerConfiguration config = new NetPeerConfiguration("623c92c287cc392406e7aaaac1c0f3b0")
{ {
AutoFlushSendQueue = true AutoFlushSendQueue = false
}; };
config.EnableMessageType(NetIncomingMessageType.UnconnectedData); config.EnableMessageType(NetIncomingMessageType.UnconnectedData);

View File

@ -561,7 +561,7 @@ namespace RageCoop.Client
#endif #endif
} }
// ThreadPool.QueueUserWorkItem((o) => { Networking.Client.FlushSendQueue(); }); ThreadPool.QueueUserWorkItem((o) => { Networking.Client.FlushSendQueue(); });
} }