summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIronClawTrem <louie.nutman@gmail.com>2020-04-02 18:37:05 +0100
committerIronClawTrem <louie.nutman@gmail.com>2020-04-02 18:37:05 +0100
commita49b55d8d98854331831d9ae32311b4003855ea7 (patch)
tree1ecab8c79da2915aa28358bda2af233d18e657b2
parent25558f0b74c4ac4ec6f4b34485e3438f93d07544 (diff)
use map not !map with g_nextMap
-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 af69a6d..e40ef90 100644
--- a/src/game/g_main.c
+++ b/src/game/g_main.c
@@ -1931,7 +1931,7 @@ void ExitLevel( void )
if( !Q_stricmp( currentmap, g_nextMap.string ) )
trap_SendConsoleCommand( EXEC_APPEND, "map_restart\n" );
else 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