diff options
author | Tim Angus <tim@ngus.net> | 2009-11-03 23:38:49 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:17 +0000 |
commit | e9551ec91ffc7fb144eac71c5b65501c2c40f39d (patch) | |
tree | 0a975d9804f5f7a0940b6740061c1a098cb6c39a /src/client | |
parent | c49ee670d39f11f5eea3bd621c7e918e41c20876 (diff) |
* Indent wrapped chat lines to avoid potential imitation exploits
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/cl_console.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/cl_console.c b/src/client/cl_console.c index 939e003f..c2e59ea6 100644 --- a/src/client/cl_console.c +++ b/src/client/cl_console.c @@ -361,6 +361,8 @@ void CL_ConsolePrint( char *txt ) { switch (c) { + case INDENT_MARKER: + break; case '\n': Con_Linefeed (skipnotify); break; |