mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Fix my previous commit about -1 ammo
This commit is contained in:
parent
4af2c91fbf
commit
3e1599ac4b
1 changed files with 1 additions and 1 deletions
|
@ -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 ) {
|
||||
|
|
Loading…
Reference in a new issue