diff options
-rw-r--r-- | code/server/sv_net_chan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/server/sv_net_chan.c b/code/server/sv_net_chan.c index 9cc3fae..dd039ef 100644 --- a/code/server/sv_net_chan.c +++ b/code/server/sv_net_chan.c @@ -138,7 +138,7 @@ void SV_Netchan_TransmitNextFragment( client_t *client ) { if (!client->netchan.unsentFragments) { // make sure the netchan queue has been properly initialized (you never know) - if (!client->netchan_end_queue) { + if ((!client->netchan_end_queue) && (client->state >= CS_CONNECTED)) { Com_Error(ERR_DROP, "netchan queue is not properly initialized in SV_Netchan_TransmitNextFragment\n"); } // the last fragment was transmitted, check wether we have queued messages |