Authored by bones_was_here
https://gitlab.com/xonotic/darkplaces/-/merge_requests/114
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@13109
d7cf8633-e32d-0410-b094-
e92efae38249
{
if (host_client->netconnection && host.realtime > host_client->netconnection->timeout)
{
- Con_Printf("Client \"%s\" connection timed out\n", host_client->name);
+ if (host_client->begun)
+ SV_BroadcastPrintf("Client \"%s\" connection timed out\n", host_client->name);
+ else
+ Con_Printf("Client \"%s\" connection timed out\n", host_client->name);
+
SV_DropClient(false);
}
}