1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-29 08:30:03 -05:00

Fixed bug with Who's Who giving Quick Revive back

This commit is contained in:
Jbleezy
2020-03-29 01:21:01 -07:00
parent 3114583dd0
commit 6f779ea061

View File

@ -3327,9 +3327,16 @@ solo_lives_fix()
if (self hasPerk("specialty_finalstand")) if (self hasPerk("specialty_finalstand"))
{ {
// fix for Who's Who giving Quick Revive when player hasn't purchased actual Quick Revive
if (!self.bought_solo_revive)
{
self unsetPerk("specialty_quickrevive");
}
self waittill_any("chugabud_effects_cleanup", "specialty_finalstand_stop"); self waittill_any("chugabud_effects_cleanup", "specialty_finalstand_stop");
// fix for Who's Who removing solo revives
self.lives = saved_lives; self.lives = saved_lives;
continue;
} }
saved_lives = self.lives; saved_lives = self.lives;