- attempt to see if this fixes issue #92

This commit is contained in:
SoftCoder 2015-12-16 16:51:14 -08:00
parent 0cad944118
commit c56641e0a0
2 changed files with 5 additions and 1 deletions

@ -1 +1 @@
Subproject commit c5cffd71d650321c49046dba3607b7107ca3868a
Subproject commit bf04854ade7cd0fc51483c857e590acfef4fbc26

View File

@ -1795,7 +1795,11 @@ void ClientInterface::waitUntilReady(Checksum* checksum) {
// delay the start a bit, so clients have more room to get messages
// This is to ensure clients don't start ahead of the server and thus
// constantly freeze because they are waiting for the server to catch up
#ifdef WIN32
sleep(20);
#else
sleep(120);
#endif
}
// This triggers LAG update packets to begin as required