Fix my previous commit about -1 ammo

This commit is contained in:
Zack Middleton 2017-11-10 21:09:01 -06:00
parent 4af2c91fbf
commit 3e1599ac4b

View file

@ -47,7 +47,7 @@ void CG_CheckAmmo( void ) {
if ( ! ( weapons & ( 1 << i ) ) ) {
continue;
}
if ( cg.cur_ps->ammo[i] < 0 ) {
if ( cg.snap->ps.ammo[i] < 0 ) {
continue;
}
switch ( i ) {