1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-28 16:10:24 -05:00

EMP Grenade: bleeds out downed players instantly

Bleeds out downed players that are being revived
This commit is contained in:
Jbleezy
2022-01-05 11:29:23 -08:00
parent 6a4387b858
commit c5db3c42e5
3 changed files with 14 additions and 4 deletions

View File

@ -59,7 +59,7 @@ emp_players(origin, radius, owner)
}
else if(player maps/mp/zombies/_zm_laststand::player_is_in_laststand())
{
player.bleedout_time = 0;
player thread player_suicide();
}
}
}
@ -211,4 +211,13 @@ player_perk_unpause( perk )
}
self notify("perk_lost");
}
player_suicide()
{
self notify( "player_suicide" );
wait_network_frame();
self maps/mp/zombies/_zm_laststand::bleed_out();
}