# HG changeset patch # User Adam Kaminski # Date 1635742450 14400 # Mon Nov 01 00:54:10 2021 -0400 # Node ID 364628122873745c8b5dc95017687243615c750c # Parent 366f5d10bc73521ba6d04d70cc411d898605d85b Fixed a "connection interrupted" issue that newly connected players got if cl_startasspectator was disabled for them. diff -r 366f5d10bc73 -r 364628122873 src/sv_main.cpp --- a/src/sv_main.cpp Sat Oct 30 13:16:29 2021 -0400 +++ b/src/sv_main.cpp Mon Nov 01 00:54:10 2021 -0400 @@ -1989,6 +1989,7 @@ g_aClients[lClient].ScreenWidth = 0; g_aClients[lClient].ScreenHeight = 0; g_aClients[lClient].ulExtraDelay = 0; + g_aClients[lClient].ulClientGameTic = 0; // [CK] Since the client is not up to date at all, the farthest the client // should be able to go back is the gametic they connected with. g_aClients[lClient].lLastServerGametic = gametic;