mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-11 15:48:05 -05:00
Who's Who: no longer gives claymores
This commit is contained in:
@ -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
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user