From 6a79a89a109ab1953535d96e3626b1bd6eeb6a27 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Wed, 6 Apr 2016 15:28:28 +0200 Subject: [PATCH] Allow offline bot to handle keys redeeming as well --- ArchiSteamFarm/Bot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Bot.cs b/ArchiSteamFarm/Bot.cs index 626e767c3..8e32124f7 100755 --- a/ArchiSteamFarm/Bot.cs +++ b/ArchiSteamFarm/Bot.cs @@ -747,7 +747,7 @@ namespace ArchiSteamFarm { } private async Task ResponseRedeem(ulong steamID, string message, bool validate) { - if (steamID == 0 || string.IsNullOrEmpty(message) || !IsMaster(steamID) || !SteamClient.IsConnected) { + if (steamID == 0 || string.IsNullOrEmpty(message) || !IsMaster(steamID)) { return null; }