diff options
author | Mikko Tiusanen <ams@daug.net> | 2014-08-26 01:59:35 +0300 |
---|---|---|
committer | Mikko Tiusanen <ams@daug.net> | 2014-08-26 01:59:35 +0300 |
commit | f2583a18444facda582bdf1e95e4216250d8ec2a (patch) | |
tree | d3751b19f4e1ba84d6ce353b4b45e2db0b52ae9f /src/game/g_maprotation.c | |
parent | 613030b05c409cef42b0e98d5180a41f8f67c661 (diff) |
Changed next layout selection to use the existing g_layouts variable.
Diffstat (limited to 'src/game/g_maprotation.c')
-rw-r--r-- | src/game/g_maprotation.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_maprotation.c b/src/game/g_maprotation.c index 2de77f0..03f5c34 100644 --- a/src/game/g_maprotation.c +++ b/src/game/g_maprotation.c @@ -762,8 +762,8 @@ void G_PrintCurrentRotation( gentity_t *ent, const char *command ) if( g_nextMap.string[ 0 ] ) ADMBP( va( "^3the next map has been set to %s\n", g_nextMap.string ) ); - if( g_nextLayout.string[ 0 ] ) - ADMBP( va( "^3the next layout has been set to %s\n", g_nextLayout.string ) ); + if( g_layouts.string[ 0 ] ) + ADMBP( va( "^3the next layout has been set to %s\n", g_layouts.string ) ); ADMBP_end( ); } |