mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-07-08 21:08:17 -05:00
Who's Who: self revives in solo always activate
This commit is contained in:
@ -355,6 +355,7 @@
|
||||
* Keep any perks obtained in Who's Who mode when exiting Who's Who mode
|
||||
* Revive twice as fast in Who's Who mode
|
||||
* Decreased Who's Who mode duration from 45 seconds to 30 seconds
|
||||
* Self revives in solo always activate during Who's Who mode
|
||||
* Invulnerable for 2 seconds after entering and exiting Who's Who mode
|
||||
* Controls are frozen for 0.5 seconds after exiting Who's Who mode
|
||||
* Purchasing Who's Who in Who's Who mode no longer destroys the clone
|
||||
|
@ -1458,6 +1458,11 @@ is_solo_death( players )
|
||||
return 1;
|
||||
}
|
||||
|
||||
if(isDefined(self.e_chugabud_corpse))
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
active_perks = 0;
|
||||
if(isDefined(self.perks_active))
|
||||
{
|
||||
@ -1525,7 +1530,7 @@ player_laststand( einflictor, attacker, idamage, smeansofdeath, sweapon, vdir, s
|
||||
disabled_perks = self.disabled_perks.size;
|
||||
}
|
||||
|
||||
if(active_perks > disabled_perks)
|
||||
if(active_perks > disabled_perks || isDefined(self.e_chugabud_corpse))
|
||||
{
|
||||
self thread maps\mp\zombies\_zm::wait_and_revive();
|
||||
}
|
||||
|
Reference in New Issue
Block a user