mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-12 16:18:00 -05:00
Who's Who: no longer gives claymores
This commit is contained in:
@ -117,6 +117,7 @@
|
|||||||
|
|
||||||
### Who's Who
|
### Who's Who
|
||||||
* Revive twice as fast when in Who's Who mode
|
* 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
|
### Electric Cherry
|
||||||
* Removed cooldown after being used multiple times in a row
|
* Removed cooldown after being used multiple times in a row
|
||||||
|
@ -74,7 +74,7 @@ onplayerspawned()
|
|||||||
self thread tombstone_save_perks();
|
self thread tombstone_save_perks();
|
||||||
self thread tombstone_restore_perks();
|
self thread tombstone_restore_perks();
|
||||||
|
|
||||||
self thread whos_who_fast_revive();
|
self thread whos_who_spawn_changes();
|
||||||
|
|
||||||
self thread electric_cherry_unlimited();
|
self thread electric_cherry_unlimited();
|
||||||
|
|
||||||
@ -3983,7 +3983,7 @@ additionalprimaryweapon_indicator()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
whos_who_fast_revive()
|
whos_who_spawn_changes()
|
||||||
{
|
{
|
||||||
self endon( "disconnect" );
|
self endon( "disconnect" );
|
||||||
|
|
||||||
@ -3993,6 +3993,11 @@ whos_who_fast_revive()
|
|||||||
|
|
||||||
self.pers_upgrades_awarded["revive"] = 1;
|
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 waittill("chugabud_effects_cleanup");
|
||||||
|
|
||||||
self.pers_upgrades_awarded["revive"] = 0;
|
self.pers_upgrades_awarded["revive"] = 0;
|
||||||
|
Reference in New Issue
Block a user