diff options
Diffstat (limited to 'src/game/bg_pmove.c')
-rw-r--r-- | src/game/bg_pmove.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c index 1ab23c62..3c3983ea 100644 --- a/src/game/bg_pmove.c +++ b/src/game/bg_pmove.c @@ -2767,7 +2767,7 @@ static void PM_Weapon( void ) } // check for end of clip - if( ( !ammo && clips ) || pm->ps->pm_flags & PMF_WEAPON_RELOAD ) + if( ( !ammo || pm->ps->pm_flags & PMF_WEAPON_RELOAD ) && clips ) { pm->ps->pm_flags &= ~PMF_WEAPON_RELOAD; |