Counter-Strike: Make the ammo counter display 1 for WEAPON_C4BOMB (as it's currently a single use item).

This commit is contained in:
Marco Cawthorne 2020-06-08 23:48:03 +02:00
parent 591f878d55
commit ae394e9703

View file

@ -72,7 +72,7 @@ void
w_c4bomb_updateammo(player pl)
{
#ifdef SERVER
Weapons_UpdateAmmo(pl, pl.a_ammo1, pl.a_ammo2, pl.a_ammo3);
Weapons_UpdateAmmo(pl, pl.a_ammo1, 1, pl.a_ammo3);
#endif
}