summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorM. Kristall <mkpdev@gmail.com>2011-01-21 01:59:13 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:17:52 +0000
commit6a3d54f188d179d00b12e07e81b70fb4c8398841 (patch)
treee82e327f06719dd27cb76b1a3b48cdf83208a3d0 /src/game
parent21f6f58f2a8aba580f6b34be71a2928d857d205c (diff)
* Prevent color bleeding by default with admin search commands
Diffstat (limited to 'src/game')
-rw-r--r--src/game/g_admin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_admin.c b/src/game/g_admin.c
index aef76d16..ab396426 100644
--- a/src/game/g_admin.c
+++ b/src/game/g_admin.c
@@ -749,7 +749,7 @@ static int admin_search( gentity_t *ent,
if( i >= start && ( limit < 1 || count < limit ) )
{
out( l, str );
- ADMBP( va( "%-3d %s\n", i + offset, str ) );
+ ADMBP( va( "%-3d %s" S_COLOR_WHITE "\n", i + offset, str ) );
count++;
end = i;
}