- Exhumed: Change M60's clip/magazine capacity from 99 to 100 to better match the max ammo capacity of the weapon. This does not increase the player's available ammunition.

This commit is contained in:
Mitchell Richters 2021-07-17 14:56:05 +10:00
parent f9b75b1aa9
commit 052429f350

View file

@ -313,8 +313,8 @@ void CheckClip(short nPlayer)
{
nPlayerClip[nPlayer] = PlayerList[nPlayer].nAmmo[kWeaponM60];
if (nPlayerClip[nPlayer] > 99) {
nPlayerClip[nPlayer] = 99;
if (nPlayerClip[nPlayer] > 100) {
nPlayerClip[nPlayer] = 100;
}
}
}