Modified: trunk/darkplaces/host.c
===================================================================
--- trunk/darkplaces/host.c	2007-04-24 15:21:56 UTC (rev 7174)
+++ trunk/darkplaces/host.c	2007-04-24 15:30:47 UTC (rev 7175)
@@ -418,7 +418,7 @@
 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);

Modified: trunk/darkplaces/host_cmd.c
===================================================================
--- trunk/darkplaces/host_cmd.c	2007-04-24 15:21:56 UTC (rev 7174)
+++ trunk/darkplaces/host_cmd.c	2007-04-24 15:30:47 UTC (rev 7175)
@@ -1401,7 +1401,7 @@
 		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");
 	}

