diff options
Diffstat (limited to 'source/cl_parse.c')
-rw-r--r-- | source/cl_parse.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/cl_parse.c b/source/cl_parse.c index a98f468..23fa50f 100644 --- a/source/cl_parse.c +++ b/source/cl_parse.c @@ -438,7 +438,9 @@ static void CL_SetActiveState( void ) { SCR_EndLoadingPlaque (); // get rid of loading plaque Con_Close(); // close console - EXEC_TRIGGER( cl_beginmapcmd ); + if( !cls.demo.playback ) { + EXEC_TRIGGER( cl_beginmapcmd ); + } Cvar_Set( "cl_paused", "0" ); } |