mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-22 20:01:34 +00:00
Merge pull request #53 from MikeyRay/main
This commit is contained in:
commit
9357ff9bf3
1 changed files with 7 additions and 1 deletions
|
@ -29,6 +29,7 @@
|
|||
void() W_PutOut;
|
||||
void(float side) W_Reload;
|
||||
void() GrenadeExplode;
|
||||
void() W_SprintStart;
|
||||
|
||||
void() ReturnWeaponModel =
|
||||
{
|
||||
|
@ -47,6 +48,11 @@ void() ReturnWeaponModel =
|
|||
// Always try to reload after any action.
|
||||
if (self.currentmag == 0 && self.currentammo != 0)
|
||||
W_Reload(S_BOTH);
|
||||
|
||||
// If the person is swapping, play the sprint anim if they're sprinting after swap. Otherwise it plays idle
|
||||
if (self.sprinting == TRUE)
|
||||
W_SprintStart();
|
||||
|
||||
}
|
||||
|
||||
void() W_PlayTakeOut =
|
||||
|
|
Loading…
Reference in a new issue