WEAPON_MP5: Start with 50 in mag under GEARBOX.

This commit is contained in:
Marco Cawthorne 2022-05-01 19:54:17 -07:00
parent 78eb9a04b2
commit 7bbecdfe8f
Signed by: eukara
GPG Key ID: C196CD8BA993248A
1 changed files with 4 additions and 1 deletions

View File

@ -102,9 +102,12 @@ int
w_mp5_pickup(player pl, int new, int startammo)
{
#ifdef SERVER
if (new) {
#ifdef GEARBOX
pl.mp5_mag = 50;
#else
pl.mp5_mag = 25;
#endif
return (1);
}