diff options
Diffstat (limited to 'src/cgame/cg_playerstate.c')
-rw-r--r-- | src/cgame/cg_playerstate.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cgame/cg_playerstate.c b/src/cgame/cg_playerstate.c index 76e196a0..05c8805f 100644 --- a/src/cgame/cg_playerstate.c +++ b/src/cgame/cg_playerstate.c @@ -66,7 +66,8 @@ void CG_CheckAmmo( void ) { total += ammo * 200; break; } - if ( total >= 5000 || BG_infiniteAmmo( i ) ) { + if ( total >= 5000 || BG_infiniteAmmo( i ) ) + { cg.lowAmmoWarning = 0; return; } |