diff options
Diffstat (limited to 'src/game/g_svcmds.c')
-rw-r--r-- | src/game/g_svcmds.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game/g_svcmds.c b/src/game/g_svcmds.c index 30caab0d..63234aba 100644 --- a/src/game/g_svcmds.c +++ b/src/game/g_svcmds.c @@ -542,6 +542,13 @@ qboolean ConsoleCommand( void ) return qtrue; } + if( Q_stricmp( cmd, "advanceMapRotation" ) == 0 ) + { + G_AdvanceMapRotation( ); + + return qtrue; + } + if( Q_stricmp( cmd, "alienWin" ) == 0 ) { int i; |