public void Update()
    {
        if (!hasAuthority)
        {
            return;
        }

        // Lancer de bière
        if (Input.GetMouseButton(0))
        {
            ThrowBeer();
        }

        // Activation des trappes
        if (m_closeToTrapTrigger && Input.GetButtonDown("Interaction"))
        {
            TrapManager.TriggerTraps();
        }
    }