mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-11 23:57:59 -05:00
Move player radiusdamage origin 5 units up
Prevents the damage being incorrect occasionally
This commit is contained in:
@ -227,6 +227,7 @@
|
|||||||
* Can kill unlimited zombies at once
|
* Can kill unlimited zombies at once
|
||||||
* No longer kills players without Juggernog instantly
|
* No longer kills players without Juggernog instantly
|
||||||
* Decreased player damage from 75 to 25
|
* Decreased player damage from 75 to 25
|
||||||
|
* Decreased player shellshock time from 2.5 seconds to 1.25 seconds
|
||||||
* Decreased startup time from 2 seconds to 0.5 seconds
|
* Decreased startup time from 2 seconds to 0.5 seconds
|
||||||
|
|
||||||
### Turret
|
### Turret
|
||||||
|
@ -207,7 +207,7 @@ nuke_powerup( drop_item, player_team )
|
|||||||
{
|
{
|
||||||
if(is_player_valid(players[i]))
|
if(is_player_valid(players[i]))
|
||||||
{
|
{
|
||||||
radiusDamage(players[i].origin, 10, 80, 80);
|
radiusDamage(players[i].origin + (0, 0, 5), 10, 80, 80);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -23,7 +23,7 @@ player_elec_damage()
|
|||||||
|
|
||||||
self shellshock( "electrocution", shocktime );
|
self shellshock( "electrocution", shocktime );
|
||||||
self playsound( "zmb_zombie_arc" );
|
self playsound( "zmb_zombie_arc" );
|
||||||
radiusdamage( self.origin, 10, 25, 25 );
|
radiusdamage( self.origin + (0, 0, 5), 10, 25, 25 );
|
||||||
|
|
||||||
wait 0.1;
|
wait 0.1;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user