1
0
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:
Jbleezy
2020-03-29 02:10:50 -07:00
parent c2d0d39128
commit 7e61473b76
2 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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;