From 1e0b8749529bed2602eda424da8b6e672c0494d8 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Tue, 2 Jun 2020 13:21:02 +0200 Subject: [PATCH] Use the same for multiple games --- ArchiSteamFarm/Bot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Bot.cs b/ArchiSteamFarm/Bot.cs index cbea5c310..5699b1643 100755 --- a/ArchiSteamFarm/Bot.cs +++ b/ArchiSteamFarm/Bot.cs @@ -894,7 +894,7 @@ namespace ArchiSteamFarm { return; } - await ArchiHandler.PlayGames(games.Select(game => game.PlayableAppID), BotConfig.CustomGamePlayedWhileFarming).ConfigureAwait(false); + await ArchiHandler.PlayGames(games.Select(game => game.PlayableAppID), string.Format(BotConfig.CustomGamePlayedWhileFarming, string.Join(", ", games.Select(game => game.AppID)), string.Join(", ", games.Select(game => game.GameName)))).ConfigureAwait(false); } internal async Task ImportKeysToRedeem(string filePath) {