mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-14 03:40:50 +00:00
- 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:
parent
f9b75b1aa9
commit
052429f350
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue