mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-21 19:51:18 +00:00
backport the svc_updatefrags flood fix
This commit is contained in:
parent
f15ca83c60
commit
aed7b1c08d
1 changed files with 1 additions and 1 deletions
|
@ -649,7 +649,7 @@ SV_UpdateToReliableMessages (void)
|
|||
host_client->sendinfo = false;
|
||||
SV_FullClientUpdate (host_client, &sv.reliable_datagram);
|
||||
}
|
||||
if (host_client->old_frags != host_client->edict->v.v.frags) {
|
||||
if (host_client->old_frags != (int) host_client->edict->v.v.frags) {
|
||||
for (j = 0, client = svs.clients; j < MAX_CLIENTS; j++, client++) {
|
||||
if (client->state < cs_connected)
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue