mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-24 13:11:30 +00:00
Echo console command now colorizes by string, not token.
Fixes Bugzilla #3879.
This commit is contained in:
parent
79fadbf271
commit
ed241a8b73
1 changed files with 1 additions and 5 deletions
|
@ -297,11 +297,7 @@ Just prints the rest of the line to the console
|
||||||
*/
|
*/
|
||||||
void Cmd_Echo_f (void)
|
void Cmd_Echo_f (void)
|
||||||
{
|
{
|
||||||
int i;
|
Com_Printf ("%s\n", Cmd_Args());
|
||||||
|
|
||||||
for (i=1 ; i<Cmd_Argc() ; i++)
|
|
||||||
Com_Printf ("%s ",Cmd_Argv(i));
|
|
||||||
Com_Printf ("\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue