More meaningful ASF 2FA error

This commit is contained in:
JustArchi
2016-11-18 23:26:47 +01:00
parent 6be6b630df
commit 47b4912a9b

View File

@@ -1091,7 +1091,7 @@ namespace ArchiSteamFarm {
}
if (BotDatabase.MobileAuthenticator == null) {
return "That bot doesn't have ASF 2FA enabled!";
return "That bot doesn't have ASF 2FA enabled! Did you forget to import your authenticator as ASF 2FA?";
}
string token = await BotDatabase.MobileAuthenticator.GenerateToken().ConfigureAwait(false);
@@ -1131,7 +1131,7 @@ namespace ArchiSteamFarm {
}
if (BotDatabase.MobileAuthenticator == null) {
return "That bot doesn't have ASF 2FA enabled!";
return "That bot doesn't have ASF 2FA enabled! Did you forget to import your authenticator as ASF 2FA?";
}
if (await AcceptConfirmations(confirm).ConfigureAwait(false)) {