mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-08 06:12:17 -05:00
PHD Flopper: players no longer take 1 fall damage when not diving
This commit is contained in:
parent
226d47613a
commit
bb4d7799ab
@ -667,6 +667,7 @@
|
|||||||
* Added perk bottle model from Origins to all maps
|
* Added perk bottle model from Origins to all maps
|
||||||
* Deals same damage on all maps
|
* Deals same damage on all maps
|
||||||
* Damages all zombies at once on all maps
|
* Damages all zombies at once on all maps
|
||||||
|
* Players no longer take 1 fall damage when not diving
|
||||||
|
|
||||||
### Deadshot Daiquiri
|
### Deadshot Daiquiri
|
||||||
* Increases bullet headshot damage by 100%
|
* Increases bullet headshot damage by 100%
|
||||||
|
@ -2138,12 +2138,15 @@ player_damage_override(einflictor, eattacker, idamage, idflags, smeansofdeath, s
|
|||||||
|
|
||||||
if (smeansofdeath == "MOD_FALLING")
|
if (smeansofdeath == "MOD_FALLING")
|
||||||
{
|
{
|
||||||
if (self hasperk("specialty_flakjacket") && isDefined(self.divetoprone) && self.divetoprone == 1)
|
if (self hasperk("specialty_flakjacket"))
|
||||||
|
{
|
||||||
|
if (is_true(self.divetoprone))
|
||||||
{
|
{
|
||||||
if (isDefined(level.zombiemode_divetonuke_perk_func))
|
if (isDefined(level.zombiemode_divetonuke_perk_func))
|
||||||
{
|
{
|
||||||
[[level.zombiemode_divetonuke_perk_func]](self, self.origin);
|
[[level.zombiemode_divetonuke_perk_func]](self, self.origin);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user