diff -uwbBEdrN src/game/g_cmds.c src/game/g_cmds.c --- src/game/g_cmds.c 2006-11-13 11:00:48.000000000 -0500 +++ src/game/g_cmds.c 2006-11-13 17:34:03.000000000 -0500 @@ -1104,6 +1104,16 @@ } else if( !Q_stricmp( arg1, "map" ) ) { + fileHandle_t f; + if( trap_FS_FOpenFile( va( "maps/%s.bsp", arg2 ), &f, FS_READ ) == -1 ) + { + trap_SendServerCommand( ent - g_entities, va( "print \"callvote: " + "'maps/%s.bsp' could not be found on the server\n\"", arg2 ) ); + return; + } + else + trap_FS_FCloseFile( f ); + Com_sprintf( level.voteString, sizeof( level.voteString ), "%s %s", arg1, arg2 ); Com_sprintf( level.voteDisplayString, sizeof( level.voteDisplayString ), "Change to map \'%s\'", arg2 );