mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 20:41:46 +00:00
Robust sigchecks: actually stage the entire diff
This commit is contained in:
parent
dcaa1c3902
commit
3c84d82d7f
1 changed files with 2 additions and 4 deletions
|
|
@ -6838,7 +6838,7 @@ static void CheckPresentPlayers(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle "client-to-client" auth challenge flow.
|
// Handle "client-to-client" auth challenge flow.
|
||||||
static void UpdateChallenges(void)
|
void UpdateChallenges(void)
|
||||||
{
|
{
|
||||||
if (!(Playing() && netgame))
|
if (!(Playing() && netgame))
|
||||||
return;
|
return;
|
||||||
|
|
@ -6857,7 +6857,7 @@ static void UpdateChallenges(void)
|
||||||
}
|
}
|
||||||
else // client
|
else // client
|
||||||
{
|
{
|
||||||
if (leveltime <= CHALLENGEALL_START)
|
if (leveltime < CHALLENGEALL_START)
|
||||||
expectChallenge = true;
|
expectChallenge = true;
|
||||||
|
|
||||||
if (leveltime == CHALLENGEALL_START)
|
if (leveltime == CHALLENGEALL_START)
|
||||||
|
|
@ -7019,8 +7019,6 @@ void NetUpdate(void)
|
||||||
|
|
||||||
UpdatePingTable();
|
UpdatePingTable();
|
||||||
|
|
||||||
UpdateChallenges();
|
|
||||||
|
|
||||||
if (client)
|
if (client)
|
||||||
maketic = neededtic;
|
maketic = neededtic;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue