mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-07-09 05:18:17 -05:00
Grief: fix bleedout announcer audio not saying correct number on EMP
This commit is contained in:
@ -202,9 +202,11 @@ player_perk_unpause( perk )
|
||||
|
||||
player_suicide()
|
||||
{
|
||||
self.playersuicided = 1;
|
||||
self notify( "player_suicide" );
|
||||
|
||||
wait_network_frame();
|
||||
|
||||
self maps/mp/zombies/_zm_laststand::bleed_out();
|
||||
self.playersuicided = undefined;
|
||||
}
|
@ -911,7 +911,7 @@ update_players_on_bleedout(excluded_player)
|
||||
|
||||
if(player.team == excluded_player.team)
|
||||
{
|
||||
if(player == excluded_player || player.sessionstate != "playing")
|
||||
if(player == excluded_player || player.sessionstate != "playing" || is_true(player.playersuicided))
|
||||
{
|
||||
team_bledout++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user