make Cvar_Command use all arguments just like Cvar_Set_f (#4063)

This commit is contained in:
Ludwig Nussel 2009-05-08 09:13:16 +00:00
parent 68fa0b55a9
commit 31ae3826ae
1 changed files with 1 additions and 1 deletions

View File

@ -652,7 +652,7 @@ qboolean Cvar_Command( void ) {
}
// set the value if forcing isn't required
Cvar_Set2 (v->name, Cmd_Argv(1), qfalse);
Cvar_Set2 (v->name, Cmd_Args(), qfalse);
return qtrue;
}