mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
- and THAT particular bug fix is going into nq too
This commit is contained in:
parent
169f1ceac2
commit
f5135b7542
1 changed files with 1 additions and 1 deletions
|
@ -673,7 +673,7 @@ SV_UpdateToReliableMessages (void)
|
|||
// check for changes to be sent over the reliable streams
|
||||
for (i = 0, host_client = svs.clients; i < svs.maxclients;
|
||||
i++, host_client++) {
|
||||
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 < svs.maxclients; j++,
|
||||
client++) {
|
||||
if (!client->active)
|
||||
|
|
Loading…
Reference in a new issue