From f2583a18444facda582bdf1e95e4216250d8ec2a Mon Sep 17 00:00:00 2001 From: Mikko Tiusanen Date: Tue, 26 Aug 2014 01:59:35 +0300 Subject: Changed next layout selection to use the existing g_layouts variable. --- src/game/g_maprotation.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/game/g_maprotation.c') 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( ); } -- cgit