Skip to content

Commit

Permalink
+
Browse files Browse the repository at this point in the history
  • Loading branch information
sp0ok3r committed May 4, 2020
1 parent 9180143 commit bb4d4d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ChatLogger/AccountLogin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ static void OnConnected(SteamClient.ConnectedCallback callback)
{
if (a.username == user)
{
if (string.IsNullOrEmpty(a.LoginKey) || a.LoginKey.ToString() == "undefined")
if (string.IsNullOrEmpty(a.LoginKey) || a.LoginKey.ToString() == "undefined")// redo
{
}
else
Expand Down Expand Up @@ -242,6 +242,8 @@ static void OnLoggedOn(SteamUser.LoggedOnCallback callback)
isRunning = false;
return;
}

// LOGGED:
Console.WriteLine("[" + Program.BOTNAME + "] - Successfully logged on!");

steamID = steamClient.SteamID.ConvertToUInt64().ToString();
Expand Down

0 comments on commit bb4d4d1

Please sign in to comment.