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

Stamin-Up: move faster

This commit is contained in:
Jbleezy 2020-02-16 14:43:18 -08:00
parent 6a7a59363e
commit 7348bd2fd0
2 changed files with 12 additions and 0 deletions

View File

@ -44,6 +44,9 @@
* Switch weapons twice as fast
* Throw grenades twice as fast
### Stamin-Up
* Move faster (normally only sprint faster)
### Deadshot
* Move faster while aiming
* Decreased sprint recovery time

View File

@ -845,6 +845,15 @@ give_additional_perks()
self UnsetPerk("specialty_stalker");
self Unsetperk( "specialty_sprintrecovery" );
}
if (self HasPerk("specialty_longersprint"))
{
self Setperk( "specialty_movefaster" );
}
else
{
self Unsetperk( "specialty_movefaster" );
}
}
}