From 7af0027c6640f4c63a224e9e506e1706aca72bbb Mon Sep 17 00:00:00 2001 From: JustArchi Date: Mon, 30 May 2016 13:12:22 +0200 Subject: [PATCH] Correct custom games played while idle with new event-based mechanism --- ArchiSteamFarm/Bot.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ArchiSteamFarm/Bot.cs b/ArchiSteamFarm/Bot.cs index df39d710c..9dc10b66f 100755 --- a/ArchiSteamFarm/Bot.cs +++ b/ArchiSteamFarm/Bot.cs @@ -1488,6 +1488,10 @@ namespace ArchiSteamFarm { } private void ResetGamesPlayed() { + if (PlayingBlocked) { + return; + } + if (!string.IsNullOrEmpty(BotConfig.CustomGamePlayedWhileIdle)) { ArchiHandler.PlayGame(BotConfig.CustomGamePlayedWhileIdle); } else {