From: dresk Date: Tue, 24 Apr 2007 15:47:51 +0000 (+0000) Subject: Added return to standard color coding in "status" command player listing X-Git-Tag: xonotic-v0.1.0preview~3260 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9c6e251d8acae148c5f0554f3492f3795d7aee12;p=xonotic%2Fdarkplaces.git Added return to standard color coding in "status" command player listing git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7178 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/host_cmd.c b/host_cmd.c index ba2f6a8d..cdf3315a 100644 --- a/host_cmd.c +++ b/host_cmd.c @@ -92,7 +92,7 @@ void Host_Status_f (void) } else hours = 0; - print ("#%-3u %-16.16s %3i %2i:%02i:%02i\n", j+1, client->name, client->frags, hours, minutes, seconds); + print ("#%-3u %-16.16s^%i %3i %2i:%02i:%02i\n", j+1, client->name, STRING_COLOR_DEFAULT, client->frags, hours, minutes, seconds); print (" %s\n", client->netconnection ? client->netconnection->address : "botclient"); } }