From 44ba45871e19212fefc4fdcb60e470e6a5d48e82 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Tue, 4 Feb 2020 18:54:32 +0100 Subject: [PATCH] Decrease MaxItemsPerTrade --- ArchiSteamFarm/Trading.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Trading.cs b/ArchiSteamFarm/Trading.cs index aa8ceffd1..d20364c67 100644 --- a/ArchiSteamFarm/Trading.cs +++ b/ArchiSteamFarm/Trading.cs @@ -34,7 +34,7 @@ using SteamKit2; namespace ArchiSteamFarm { public sealed class Trading : IDisposable { - internal const byte MaxItemsPerTrade = byte.MaxValue; // This is due to limit on POST size in WebBrowser + internal const byte MaxItemsPerTrade = 200; // This is decided upon various factors, mainly limit on POST size in WebBrowser, as well as stability of Steam servers when dealing with huge trade offers internal const byte MaxTradesPerAccount = 5; // This is limit introduced by Valve private readonly Bot Bot;