1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-07 21:59:49 -05:00

Electric Cherry: removed cooldown

This commit is contained in:
Jbleezy 2020-02-22 16:42:05 -08:00
parent 056ce3f3e0
commit d7e2286a20
2 changed files with 18 additions and 0 deletions

View File

@ -60,6 +60,9 @@
* Move faster while aiming * Move faster while aiming
* Decreased sprint recovery time * Decreased sprint recovery time
### Electric Cherry
* Removed cooldown after being used multiple times in a row
## Powerups ## Powerups
### Carpenter ### Carpenter

View File

@ -41,6 +41,8 @@ onplayerspawned()
self thread on_equipment_placed(); self thread on_equipment_placed();
self thread give_additional_perks(); self thread give_additional_perks();
self thread electric_cherry_unlimited();
self thread screecher_remove_hint(); self thread screecher_remove_hint();
self thread jetgun_fast_cooldown(); self thread jetgun_fast_cooldown();
@ -1061,6 +1063,19 @@ give_additional_perks()
} }
} }
electric_cherry_unlimited()
{
self endon( "death" );
self endon( "disconnect" );
for ( ;; )
{
self.consecutive_electric_cherry_attacks = 0;
wait 0.5;
}
}
zombie_health_fix() zombie_health_fix()
{ {
for ( ;; ) for ( ;; )