void Unequip(Hand hand)
    {
        switch (hand)
        {
        case Hand.Right:
            if (gunR)
            {
                gunR.BeDropped();
            }
            break;

        case Hand.Left:
            if (gunL)
            {
                gunL.BeDropped();
            }
            break;
        }
    }