From 64f424e47454eb5be82b2400b4cdec5fb7138c5b Mon Sep 17 00:00:00 2001 From: JustArchi Date: Thu, 9 Jun 2016 03:18:56 +0200 Subject: [PATCH] Misc --- ArchiSteamFarm/CardsFarmer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/CardsFarmer.cs b/ArchiSteamFarm/CardsFarmer.cs index 89f81b9f8..366bed23d 100755 --- a/ArchiSteamFarm/CardsFarmer.cs +++ b/ArchiSteamFarm/CardsFarmer.cs @@ -202,7 +202,7 @@ namespace ArchiSteamFarm { return; } - if (Bot.BotConfig.CardDropsRestricted && (GamesToFarm.Values.Min() < 2)) { + if (Bot.BotConfig.CardDropsRestricted && (GamesToFarm.Count > 0) && (GamesToFarm.Values.Min() < 2)) { // If we have Complex algorithm and some games to boost, it's also worth to make a check // That's because we would check for new games after our current round anyway await StopFarming().ConfigureAwait(false);