mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-11 06:04:24 +00:00
Closes #2293
This commit is contained in:
@@ -916,7 +916,12 @@ namespace ArchiSteamFarm {
|
||||
|
||||
CurrentGamesFarming.ReplaceWith(games);
|
||||
|
||||
Bot.ArchiLogger.LogGenericInfo(string.Format(CultureInfo.CurrentCulture, Strings.NowIdlingList, string.Join(", ", games.Select(game => game.AppID))));
|
||||
if (games.Count == 1) {
|
||||
Game game = games.First();
|
||||
Bot.ArchiLogger.LogGenericInfo(string.Format(CultureInfo.CurrentCulture, Strings.NowIdling, game.AppID, game.GameName));
|
||||
} else {
|
||||
Bot.ArchiLogger.LogGenericInfo(string.Format(CultureInfo.CurrentCulture, Strings.NowIdlingList, string.Join(", ", games.Select(game => game.AppID))));
|
||||
}
|
||||
|
||||
bool result = await FarmHours(games).ConfigureAwait(false);
|
||||
CurrentGamesFarming.Clear();
|
||||
|
||||
Reference in New Issue
Block a user