From 6f779ea06170098fff336f63ce404c22f5d07bed Mon Sep 17 00:00:00 2001 From: Jbleezy Date: Sun, 29 Mar 2020 01:21:01 -0700 Subject: [PATCH] Fixed bug with Who's Who giving Quick Revive back --- _zm_reimagined.gsc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/_zm_reimagined.gsc b/_zm_reimagined.gsc index c4350d79..d859ae19 100644 --- a/_zm_reimagined.gsc +++ b/_zm_reimagined.gsc @@ -3327,9 +3327,16 @@ solo_lives_fix() 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"); + + // fix for Who's Who removing solo revives self.lives = saved_lives; - continue; } saved_lives = self.lives;