summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorM. Kristall <mkpdev@gmail.com>2009-12-21 03:20:16 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:17:24 +0000
commit43770d569cd5a1fb8093b01f961c94ffdb607b3d (patch)
tree516979839728a17fc5bfd6630dbf926d2bda2893 /src/game
parentecb5f1ac0d88443a0c305b1dcadff10fac6ee1f8 (diff)
* Fix a bug with nextmap votes
Diffstat (limited to 'src/game')
-rw-r--r--src/game/g_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_main.c b/src/game/g_main.c
index 16c11ec7..0e1df90e 100644
--- a/src/game/g_main.c
+++ b/src/game/g_main.c
@@ -1581,7 +1581,7 @@ void ExitLevel( void )
gclient_t *cl;
if ( G_MapExists( g_nextMap.string ) )
- trap_SendConsoleCommand( EXEC_APPEND, va("map %s\n", g_nextMap.string ) );
+ trap_SendConsoleCommand( EXEC_APPEND, va("map \"%s\"\n", g_nextMap.string ) );
else if( G_MapRotationActive( ) )
G_AdvanceMapRotation( );
else