]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
also send MSG_ALL to people who are past ClientConnect, but not spawned yet (makes...
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 13 Aug 2008 09:59:36 +0000 (09:59 +0000)
committerdivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 13 Aug 2008 09:59:36 +0000 (09:59 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8451 d7cf8633-e32d-0410-b094-e92efae38249

sv_main.c

index ff02ac219b1b25106ae600fbea971d06e36dcbf8..5a1485eff9c709eb3f60967eed1edae6356b160d 100644 (file)
--- a/sv_main.c
+++ b/sv_main.c
@@ -2030,7 +2030,7 @@ static void SV_UpdateToReliableMessages (void)
        }
 
        for (j = 0, client = svs.clients;j < svs.maxclients;j++, client++)
-               if (client->netconnection && client->spawned)
+               if (client->netconnection && (client->spawned || client->clientconnectcalled)) // also send MSG_ALL to people who are past ClientConnect, but not spawned yet
                        SZ_Write (&client->netconnection->message, sv.reliable_datagram.data, sv.reliable_datagram.cursize);
 
        SZ_Clear (&sv.reliable_datagram);