// Start is called before the first frame update

    void Start()
    {
        if (GlobalVariables.local)
        {
            enabled = false;
        }
        else
        {
            col = gameObject.GetComponent <ItemCollector>();
            if (isServer)
            {
                col.calcDrop();
            }
        }
    }