diff --git a/README.md b/README.md index 0b2dc474..2996ae0b 100644 --- a/README.md +++ b/README.md @@ -117,6 +117,7 @@ ### Who's Who * Revive twice as fast when in Who's Who mode +* No longer gives the player claymores in Who's Who mode if the player purchased claymores ### Electric Cherry * Removed cooldown after being used multiple times in a row diff --git a/_zm_reimagined.gsc b/_zm_reimagined.gsc index bf1bc1fe..f4d0385f 100644 --- a/_zm_reimagined.gsc +++ b/_zm_reimagined.gsc @@ -74,7 +74,7 @@ onplayerspawned() self thread tombstone_save_perks(); self thread tombstone_restore_perks(); - self thread whos_who_fast_revive(); + self thread whos_who_spawn_changes(); self thread electric_cherry_unlimited(); @@ -3983,7 +3983,7 @@ additionalprimaryweapon_indicator() } } -whos_who_fast_revive() +whos_who_spawn_changes() { self endon( "disconnect" ); @@ -3993,6 +3993,11 @@ whos_who_fast_revive() self.pers_upgrades_awarded["revive"] = 1; + self takeweapon("frag_grenade_zm"); + self takeweapon("claymore_zm"); + self giveweapon("sticky_grenade_zm"); + self setweaponammoclip("sticky_grenade_zm", 2); + self waittill("chugabud_effects_cleanup"); self.pers_upgrades_awarded["revive"] = 0;