Just wanted to let you know that I found a solution, in case you would like to add it to the plugin. If you add this code to the bp_registration_hide_ui function it disables new site creation for moderated users.
function filter_wpmu_active_signup( $active_signup ) {
return 'none';
};
add_filter( 'wpmu_active_signup', 'filter_wpmu_active_signup', 10, 1 );