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:
parent
056ce3f3e0
commit
d7e2286a20
@ -60,6 +60,9 @@
|
||||
* Move faster while aiming
|
||||
* Decreased sprint recovery time
|
||||
|
||||
### Electric Cherry
|
||||
* Removed cooldown after being used multiple times in a row
|
||||
|
||||
## Powerups
|
||||
|
||||
### Carpenter
|
||||
|
@ -41,6 +41,8 @@ onplayerspawned()
|
||||
self thread on_equipment_placed();
|
||||
self thread give_additional_perks();
|
||||
|
||||
self thread electric_cherry_unlimited();
|
||||
|
||||
self thread screecher_remove_hint();
|
||||
|
||||
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()
|
||||
{
|
||||
for ( ;; )
|
||||
|
Loading…
x
Reference in New Issue
Block a user