git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7175
d7cf8633-e32d-0410-b094-
e92efae38249
void SV_DropClient(qboolean crash)
{
int i;
- Con_Printf("Client \"%s\" dropped\n", host_client->name);
+ Con_Printf("Client \"%s^%i\" dropped\n", host_client->name, STRING_COLOR_DEFAULT);
// make sure edict is not corrupt (from a level change for example)
host_client->edict = PRVM_EDICT_NUM(host_client - svs.clients + 1);
PRVM_ExecuteProgram (prog->globals.server->ClientConnect, "QC function ClientConnect is missing");
if (svs.maxclients > 1 || cls.state == ca_dedicated)
- Con_Printf("%s entered the game\n", host_client->name);
+ Con_Printf("%s^%i entered the game\n", host_client->name, STRING_COLOR_DEFAULT);
PRVM_ExecuteProgram (prog->globals.server->PutClientInServer, "QC function PutClientInServer is missing");
}