diff --git a/MercuryBOT/HandleLogin.cs b/MercuryBOT/HandleLogin.cs index 3727bfc..a1a6b2b 100644 --- a/MercuryBOT/HandleLogin.cs +++ b/MercuryBOT/HandleLogin.cs @@ -496,7 +496,7 @@ private void OnAccountInfo(SteamUser.AccountInfoCallback callback) } - private static void GetPrivacySettings() + public static void GetPrivacySettings() { CPlayer_GetPrivacySettings_Request req = new CPlayer_GetPrivacySettings_Request { }; playerRequest = playerService.SendMessage(x => x.GetPrivacySettings(req)); diff --git a/MercuryBOT/Main.cs b/MercuryBOT/Main.cs index 9008f93..5d5f234 100644 --- a/MercuryBOT/Main.cs +++ b/MercuryBOT/Main.cs @@ -588,7 +588,7 @@ private void btn_setName_Click(object sender, EventArgs e) { if (HandleLogin.IsLoggedIn == true) { - handleLogin.ChangeCurrentName(txtBox_nameChange.Text); + HandleLogin.ChangeCurrentName(txtBox_nameChange.Text); txtBox_nameChange.Clear(); } else