mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-10 07:08:06 -05:00
Encounter: allow team change on private matches
This commit is contained in:
@ -925,4 +925,11 @@
|
||||
* ```set ui_gametype_obj zcontainment```
|
||||
|
||||
### Meat
|
||||
* ```set ui_gametype_obj zmeat```
|
||||
* ```set ui_gametype_obj zmeat```
|
||||
|
||||
## Changing Teams (Grief)
|
||||
|
||||
* By default, teams are random on Grief
|
||||
* Copy and paste the following commands into the console to add the option to change teams in the in-game menu
|
||||
|
||||
* ```gts allowInGameTeamChange 1; set ui_gametype_team_change 1```
|
@ -617,7 +617,7 @@ fade_out_intro_screen_zm( hold_black_time, fade_out_time, destroyed_afterwards )
|
||||
|
||||
flag_set( "hud_visible" );
|
||||
|
||||
if ( isDedicated() )
|
||||
if ( isDedicated() || ( is_gametype_active("zgrief") && getDvarInt("ui_gametype_team_change") ) )
|
||||
{
|
||||
level thread wait_for_all_players_ready();
|
||||
|
||||
|
Reference in New Issue
Block a user