mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 01:11:18 +00:00
make the server clients' pings visible
This commit is contained in:
parent
3f50758b01
commit
26a3b4fa54
1 changed files with 2 additions and 2 deletions
|
@ -520,7 +520,7 @@ SV_Status_f (void)
|
|||
continue;
|
||||
}
|
||||
if (cl->state == cs_server) {
|
||||
SV_Printf ("SERVER\n");
|
||||
SV_Printf ("SERVER %d\n", cl->ping);
|
||||
continue;
|
||||
}
|
||||
SV_Printf ("%4i %4i %5.2f\n",
|
||||
|
@ -555,7 +555,7 @@ SV_Status_f (void)
|
|||
continue;
|
||||
}
|
||||
if (cl->state == cs_server) {
|
||||
SV_Printf ("SERVER\n");
|
||||
SV_Printf ("SERVER %d\n", cl->ping);
|
||||
continue;
|
||||
}
|
||||
SV_Printf ("%4i %4i %3.1f %4i",
|
||||
|
|
Loading…
Reference in a new issue