Decrease MaxItemsPerTrade

This commit is contained in:
JustArchi
2020-02-04 18:54:32 +01:00
parent f98a5d3d87
commit 44ba45871e

View File

@@ -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;