Echo console command now colorizes by string, not token.

Fixes Bugzilla #3879.
This commit is contained in:
Ryan C. Gordon 2009-09-15 05:57:14 +00:00
parent 79fadbf271
commit ed241a8b73
1 changed files with 1 additions and 5 deletions

View File

@ -297,11 +297,7 @@ Just prints the rest of the line to the console
*/
void Cmd_Echo_f (void)
{
int i;
for (i=1 ; i<Cmd_Argc() ; i++)
Com_Printf ("%s ",Cmd_Argv(i));
Com_Printf ("\n");
Com_Printf ("%s\n", Cmd_Args());
}