From ad5130290834957a2637e899ffa847420d0510fe Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Mon, 8 Jun 2015 17:44:55 +0200 Subject: add missing trailing '\n's from strings to execute; add double quotes around substituted argument strings also transform trailing ';'s to '\n's --- src/cgame/cg_consolecmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cgame') diff --git a/src/cgame/cg_consolecmds.c b/src/cgame/cg_consolecmds.c index c54d51fb..adae40a8 100644 --- a/src/cgame/cg_consolecmds.c +++ b/src/cgame/cg_consolecmds.c @@ -168,7 +168,7 @@ void CG_ClientList_f( void ) static void CG_UIMenu_f( void ) { - trap_SendConsoleCommand( va( "menu %s\n", CG_Argv( 1 ) ) ); + trap_SendConsoleCommand( va( "menu \"%s\"\n", CG_Argv( 1 ) ) ); } static consoleCommand_t commands[ ] = -- cgit