Update g_items.c

ammopak usually increase the maximum ammo, even beyond the bandolier.
i suppose there is a bug with fletchette ammo.

fletchette starts with 200 max ammo, becomes 250 max ammo with bandolier and returns to 200 max ammo with ammopack.
on the contrary both cells and bullets start at 200, becomes 250 with bandolier and 300 with ammopack.
This commit is contained in:
Dremor8484 2023-03-20 15:47:12 +01:00 committed by GitHub
parent a9412c91b9
commit 5d767c6b30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -405,9 +405,9 @@ Pickup_Pack(edict_t *ent, edict_t *other)
other->client->pers.max_slugs = 100;
}
if (other->client->pers.max_flechettes < 200)
if (other->client->pers.max_flechettes < 300)
{
other->client->pers.max_flechettes = 200;
other->client->pers.max_flechettes = 300;
}
if (g_disruptor->value)