This commit is contained in:
JustArchi
2017-01-04 10:17:11 +01:00
parent c293ad6809
commit 8208bf30ae

View File

@@ -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();
}