mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 07:12:03 +00:00
fix ping command showing a random players ms ping instead of your ping
This commit is contained in:
parent
62294dfe35
commit
3dce66a5c5
1 changed files with 1 additions and 1 deletions
|
@ -1464,7 +1464,7 @@ void Command_Ping_f(void)
|
||||||
|
|
||||||
if (!server && playeringame[consoleplayer])
|
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