From ac7ecb6bb4082fba3a06b70f98dab15b570d085a Mon Sep 17 00:00:00 2001 From: JustArchi Date: Sat, 23 Apr 2016 16:34:00 +0200 Subject: [PATCH] Misc --- ArchiSteamFarm/Bot.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ArchiSteamFarm/Bot.cs b/ArchiSteamFarm/Bot.cs index 0e7088fd8..29e9f8aac 100755 --- a/ArchiSteamFarm/Bot.cs +++ b/ArchiSteamFarm/Bot.cs @@ -410,7 +410,7 @@ namespace ArchiSteamFarm { Task.Run(() => HandleCallbacks()).Forget(); } - // 2FA tokens are expiring soon, use limiter only when user is providing one + // 2FA tokens are expiring soon, don't use limiter when user is providing one if (TwoFactorCode == null || BotDatabase.SteamGuardAccount != null) { await Program.LimitSteamRequestsAsync().ConfigureAwait(false); } @@ -1422,7 +1422,7 @@ namespace ArchiSteamFarm { Logging.LogGenericInfo("Reconnecting...", BotName); - // 2FA tokens are expiring soon, use limiter only when user is providing one + // 2FA tokens are expiring soon, don't use limiter when user is providing one if (TwoFactorCode == null || BotDatabase.SteamGuardAccount != null) { await Program.LimitSteamRequestsAsync().ConfigureAwait(false); }