private void Update()
    {
        if (_ircConnection != null)
        {
            _ircConnection.Update();
        }

        if (Input.GetKey(KeyCode.Escape))
        {
            InputInterceptor.EnableInput();
        }
    }