mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 22:20:52 +00:00
Misc #393
This commit is contained in:
@@ -2376,7 +2376,7 @@ namespace ArchiSteamFarm {
|
||||
return "Bot " + BotName + " is not farming anything.";
|
||||
}
|
||||
|
||||
StringBuilder response = new StringBuilder("Bot " + BotName + " is farming ");
|
||||
StringBuilder response = new StringBuilder("Bot " + BotName + " is idling ");
|
||||
|
||||
if (CardsFarmer.CurrentGamesFarming.Count == 1) {
|
||||
CardsFarmer.Game game = CardsFarmer.CurrentGamesFarming.First();
|
||||
@@ -2385,7 +2385,7 @@ namespace ArchiSteamFarm {
|
||||
response.Append("appIDs: " + string.Join(", ", CardsFarmer.CurrentGamesFarming.Select(game => game.AppID)));
|
||||
}
|
||||
|
||||
response.Append(" and has a total of " + CardsFarmer.GamesToFarm.Count + " games (" + CardsFarmer.GamesToFarm.Sum(game => game.CardsRemaining) + " cards) left to farm (~" + CardsFarmer.TimeRemaining.ToHumanReadable() + " remaining).");
|
||||
response.Append(" and has a total of " + CardsFarmer.GamesToFarm.Count + " games (" + CardsFarmer.GamesToFarm.Sum(game => game.CardsRemaining) + " cards) left to idle (~" + CardsFarmer.TimeRemaining.ToHumanReadable() + " remaining).");
|
||||
return response.ToString();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user