Slain some bugs

This commit is contained in:
JustArchi
2015-10-28 20:01:43 +01:00
parent 30ca6ce7ef
commit d30d90a5b0
7 changed files with 70 additions and 15 deletions

View File

@@ -39,14 +39,16 @@ namespace ArchiSteamFarm {
}
internal static string GetSteamGuardCode(string botLogin, bool twoFactorAuthentication) {
string result;
lock (ConsoleLock) {
if (twoFactorAuthentication) {
Console.Write("<" + botLogin + "> Please enter your 2 factor auth code from your authenticator app: ");
} else {
Console.Write("<" + botLogin + "> Please enter the auth code sent to your email : ");
}
return Console.ReadLine();
result = Console.ReadLine();
}
return result;
}
private static void ShutdownAllBots() {