summaryrefslogtreecommitdiff
path: root/src/game/bg_misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/bg_misc.c')
-rw-r--r--src/game/bg_misc.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c
index 2b4fa29..0ebcc55 100644
--- a/src/game/bg_misc.c
+++ b/src/game/bg_misc.c
@@ -3892,9 +3892,14 @@ void BG_FindAmmoForWeapon( int weapon, int *maxAmmo, int *maxClips )
*maxClips = bg_weapons[ i ].maxClips;
//no need to keep going
- break;
+ return;
}
}
+
+ if( maxAmmo != NULL )
+ *maxAmmo = 0;
+ if( maxClips != NULL )
+ *maxClips = 0;
}
/*