mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-20 18:52:28 +00:00
oops, that didn't work as expected
This commit is contained in:
parent
61aeae52bf
commit
978ad6ff48
1 changed files with 5 additions and 2 deletions
|
@ -463,8 +463,11 @@ SV_FullClientUpdateToClient (client_t *client, backbuf_t *backbuf)
|
|||
if (client->state < cs_connected && client->state != cs_server)
|
||||
return;
|
||||
MSG_ReliableCheckBlock (backbuf, 24 + client->userinfo->cursize);
|
||||
SV_FullClientUpdate (client, &backbuf->backbuf);
|
||||
MSG_Reliable_FinishWrite (backbuf);
|
||||
if (backbuf->num_backbuf) {
|
||||
SV_FullClientUpdate (client, &backbuf->backbuf);
|
||||
MSG_Reliable_FinishWrite (backbuf);
|
||||
} else
|
||||
SV_FullClientUpdate (client, &backbuf->netchan->message);
|
||||
}
|
||||
|
||||
/* CONNECTIONLESS COMMANDS */
|
||||
|
|
Loading…
Reference in a new issue