From 4bc7a30d55613a26d31a61d1126fe6dab790107a Mon Sep 17 00:00:00 2001 From: JustArchi Date: Fri, 5 Oct 2018 03:42:59 +0200 Subject: [PATCH] Misc --- ArchiSteamFarm/Trading.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Trading.cs b/ArchiSteamFarm/Trading.cs index 7bc2fedd9..8c0b8d7d2 100644 --- a/ArchiSteamFarm/Trading.cs +++ b/ArchiSteamFarm/Trading.cs @@ -176,7 +176,7 @@ namespace ArchiSteamFarm { } // At this point we're sure that both number of unique items in the set stays the same, as well as number of our actual sets - // We need to ensure set progress here and keep in mind overpaying, so we'll calculate neutrality as a difference in amounts on appropriate indexes + // We need to ensure set progress here and keep in mind overpaying, so we'll calculate neutrality as a difference in amounts at appropriate indexes // The higher the neutrality the better the trade, with 0 being the absolute minimum we're willing to accept if (afterAmounts.Select((t, i) => (int) (t - beforeAmounts[i])).Sum() < 0) { return false;