// Use this for initialization
    void Start()
    {
        weapon = GetComponent <WeaponSystem>();

        oldAmmo = weapon.currentAmmo; // old ammo = magazine of current weapon

        weapon.CheckFire();           // Firing takes off 1 bullet
    }