mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-10 23:27:57 -05:00
Grief: decrease headstomp radius
This commit is contained in:
@ -337,7 +337,7 @@
|
||||
* Bleeding out enemy players awards 1000 points to all teammates
|
||||
* Landing on top of an enemy player downs only the bottom player
|
||||
* Landing on top of an enemy player can be done at any stance
|
||||
* Increased max radius for landing on top of an enemy player by 33%
|
||||
* Increased max radius for landing on top of an enemy player by 16.67%
|
||||
* Decreased max height for landing on top of an enemy player that is crouched by 13%
|
||||
* Decreased max height for landing on top of an enemy player that is prone by 47%
|
||||
* Added kill feed (includes downs, revives, and bleed outs)
|
||||
|
@ -626,7 +626,7 @@ headstomp_watcher()
|
||||
{
|
||||
if(player != self && player.team != self.team && is_player_valid(player) && player isOnGround() && self.origin[2] > player getCentroid()[2])
|
||||
{
|
||||
max_horz_dist = 24;
|
||||
max_horz_dist = 21;
|
||||
max_vert_dist = 36;
|
||||
|
||||
if(player getStance() == "crouch")
|
||||
|
Reference in New Issue
Block a user