diff options
author | Andrey Nazarov <skuller@skuller.net> | 2009-01-27 02:38:03 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2009-01-27 02:38:03 +0000 |
commit | 11fce07eb084b8c29b3f99554d09d0ca62eb3171 (patch) | |
tree | bf23d89a2333700f3c99e1bf30bc71d18fd8fe19 /source/sv_user.c | |
parent | 293abfd718668589460d810b6017898913606a35 (diff) |
Oops, fixing ‘lag’ command output being sent to the wrong client.
Diffstat (limited to 'source/sv_user.c')
-rw-r--r-- | source/sv_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sv_user.c b/source/sv_user.c index e5b93ed..1249cbe 100644 --- a/source/sv_user.c +++ b/source/sv_user.c @@ -769,7 +769,7 @@ static void SV_Lag_f( void ) { c2s = ( (float)cl->netchan->total_dropped / cl->netchan->total_received ) * 100.0f; - SV_ClientPrintf( cl, PRINT_HIGH, + SV_ClientPrintf( sv_client, PRINT_HIGH, "Lag stats for: %s\n" "RTT (min/avg/max): %d/%d/%d ms\n" "Server to client PL: %.2f%% (approx)\n" |