1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-11 07:37:56 -05:00

Team voice

Encounter: all voice on intermission
This commit is contained in:
Jbleezy
2022-02-05 10:01:21 -08:00
parent 67102c4ed8
commit 02add3944a
2 changed files with 10 additions and 0 deletions

View File

@ -277,6 +277,8 @@ set_dvars()
setDvar( "sv_patch_zm_weapons", 0 );
setDvar( "sv_fix_zm_weapons", 1 );
setDvar( "sv_voice", 2 );
}
set_client_dvars()

View File

@ -75,6 +75,7 @@ init()
level thread unlimited_powerups();
level thread remove_round_number();
level thread remove_status_icons_on_intermission();
level thread all_voice_on_intermission();
level thread random_map_rotation();
level thread spawn_bots();
}
@ -2209,6 +2210,13 @@ remove_status_icons_on_intermission()
}
}
all_voice_on_intermission()
{
level waittill("intermission");
setDvar("sv_voice", 1);
}
race_init()
{
level.race_round_increment_time = 60;