mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-31 00:30:57 +00:00
- fix our favorite svc_updatefrags overflow bug! weeeeee
This commit is contained in:
parent
5330fd5651
commit
5d757c0d85
1 changed files with 1 additions and 1 deletions
|
@ -613,7 +613,7 @@ SV_UpdateToReliableMessages (void)
|
||||||
host_client->sendinfo = false;
|
host_client->sendinfo = false;
|
||||||
SV_FullClientUpdate (host_client, &sv.reliable_datagram);
|
SV_FullClientUpdate (host_client, &sv.reliable_datagram);
|
||||||
}
|
}
|
||||||
if (host_client->old_frags != SVfloat (host_client->edict, frags)) {
|
if (host_client->old_frags != (int) SVfloat (host_client->edict, frags)) {
|
||||||
for (j = 0, client = svs.clients; j < MAX_CLIENTS; j++, client++) {
|
for (j = 0, client = svs.clients; j < MAX_CLIENTS; j++, client++) {
|
||||||
if (client->state < cs_connected)
|
if (client->state < cs_connected)
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue