Patch by Spike to make pings update correctly on the scoreboard.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2853 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
776faf1bc4
commit
93ee9cba84
2 changed files with 3 additions and 3 deletions
|
@ -1801,7 +1801,7 @@ static void CheckSendPings(void)
|
|||
if (realtime - cl.last_ping_request > 2)
|
||||
{
|
||||
cl.last_ping_request = realtime;
|
||||
CL_SendClientCommand(false, "pings");
|
||||
CL_SendClientCommand(true, "pings");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -2194,7 +2194,7 @@ void Sbar_DeathmatchOverlay (int start)
|
|||
if (realtime - cl.last_ping_request > 2 && cls.protocol == CP_QUAKEWORLD)
|
||||
{
|
||||
cl.last_ping_request = realtime;
|
||||
CL_SendClientCommand(false, "pings");
|
||||
CL_SendClientCommand(true, "pings");
|
||||
}
|
||||
|
||||
scr_copyeverything = 1;
|
||||
|
@ -2511,7 +2511,7 @@ void Sbar_ChatModeOverlay(void)
|
|||
if (realtime - cl.last_ping_request > 2 && cls.protocol == CP_QUAKEWORLD)
|
||||
{
|
||||
cl.last_ping_request = realtime;
|
||||
CL_SendClientCommand(false, "pings");
|
||||
CL_SendClientCommand(true, "pings");
|
||||
}
|
||||
|
||||
scr_copyeverything = 1;
|
||||
|
|
Loading…
Reference in a new issue