diff options
author | M. Kristall <mkpdev@gmail.com> | 2009-10-19 04:41:17 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:56 +0000 |
commit | be79439b479902f5b464511e95c4c5455071e8fa (patch) | |
tree | aef27eb626ad72050694e8139fde160d051bef4c /src | |
parent | cec4846c6087216982603e0428a6d4114df74259 (diff) |
* Change team colors in !listplayers to be more consistent with team prefixes in
chat
Diffstat (limited to 'src')
-rw-r--r-- | src/game/g_admin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/g_admin.c b/src/game/g_admin.c index 383b7b99..9981812b 100644 --- a/src/game/g_admin.c +++ b/src/game/g_admin.c @@ -2137,17 +2137,17 @@ qboolean G_admin_listplayers( gentity_t *ent, int skiparg ) if( p->pers.connected == CON_CONNECTING ) { t = 'C'; - c = COLOR_CYAN; + c = COLOR_YELLOW; } else { t = toupper( *( BG_TeamName( p->pers.teamSelection ) ) ); if( p->pers.teamSelection == TEAM_HUMANS ) - c = COLOR_BLUE; + c = COLOR_CYAN; else if( p->pers.teamSelection == TEAM_ALIENS ) c = COLOR_RED; else - c = COLOR_YELLOW; + c = COLOR_WHITE; } muted = p->pers.muted ? 'M' : ' '; |