mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-13 13:40:56 +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 ) ) ) {
|
if ( ! ( weapons & ( 1 << i ) ) ) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if ( cg.cur_ps->ammo[i] < 0 ) {
|
if ( cg.snap->ps.ammo[i] < 0 ) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
switch ( i ) {
|
switch ( i ) {
|
||||||
|
|
Loading…
Reference in a new issue