/// <summary>
    /// Refreshes the client's login status
    /// </summary>
    public void RefreshLoginStatus()
    {
        Debug.Log("Checking user login..");
        Debug.Log($"Client auth server token: {MojangAuthentication.GetClientToken()}");

        SetAuthImage(AuthImageStatus.LOADING);
        StartCoroutine(MojangAuthentication.GetLoginStatus(HandleLoginResponse));
    }