mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 07:12:03 +00:00
Merge branch 'pingcmdfix' into 'master'
Fix ping command showing a random players ms ping instead of your ping See merge request KartKrew/Kart-Public!342
This commit is contained in:
commit
1116df5776
1 changed files with 1 additions and 1 deletions
|
@ -1464,7 +1464,7 @@ void Command_Ping_f(void)
|
|||
|
||||
if (!server && playeringame[consoleplayer])
|
||||
{
|
||||
CONS_Printf("\nYour ping is %d frames (%d ms)\n", playerpingtable[consoleplayer], (INT32)(playerpingtable[i] * (1000.00f / TICRATE)));
|
||||
CONS_Printf("\nYour ping is %d frames (%d ms)\n", playerpingtable[consoleplayer], (INT32)(playerpingtable[consoleplayer] * (1000.00f / TICRATE)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue