mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-04-03 17:01:19 +00:00
only check for nodes that are actually ingame
This commit is contained in:
parent
a29e3a6c08
commit
e391967fc6
1 changed files with 1 additions and 2 deletions
|
@ -1143,13 +1143,12 @@ static boolean SV_SendServerConfig(INT32 node)
|
|||
#ifdef JOININGAME
|
||||
#define SAVEGAMESIZE (768*1024)
|
||||
|
||||
|
||||
static boolean SV_ResendingSavegameToAnyone(void)
|
||||
{
|
||||
INT32 i;
|
||||
|
||||
for (i = 0; i < MAXNETNODES; i++)
|
||||
if (resendingsavegame[i])
|
||||
if (nodeingame[i] && resendingsavegame[i])
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue