WEAPON_SNARK gives 5 per pickup apparently. Fixed

This commit is contained in:
Marco Cawthorne 2019-08-19 01:37:20 -07:00
parent ce19b6995d
commit e75e3a2904

View file

@ -20,7 +20,7 @@ void w_snark_pickup(void)
{
#ifdef SSQC
player pl = (player)self;
pl.ammo_snark = bound(0, pl.ammo_snark + 1, 10);
pl.ammo_snark = bound(0, pl.ammo_snark + 5, 10);
#endif
}