possible hotfix for crashes

This commit is contained in:
Lion Kortlepel
2021-03-30 14:38:13 +02:00
parent c7cf0a733e
commit 704e25636d

View File

@@ -345,7 +345,7 @@ bool TNetwork::TCPSend(TClient& c, const std::string& Data, bool IsSync) {
while (c.MissedPacketQueueSize() > 0) {
std::string QData = c.MissedPacketQueue().front();
c.MissedPacketQueue().pop();
debug("sending a missed packet: " + QData);
// debug("sending a missed packet: " + QData);
TCPSend(c, QData, true);
}
}