Set MaxItemsPerTrade correctly, closes #81

This commit is contained in:
JustArchi
2016-01-23 22:23:38 +01:00
parent 4913d6c0a0
commit a3ab01bf0e

View File

@@ -28,7 +28,7 @@ using System.Threading.Tasks;
namespace ArchiSteamFarm {
internal sealed class Trading {
internal const ushort MaxItemsPerTrade = 100; // TODO: This should be corrected later, https://github.com/JustArchi/ArchiSteamFarm/issues/81
internal const ushort MaxItemsPerTrade = 150;
private readonly Bot Bot;
private readonly SemaphoreSlim Semaphore = new SemaphoreSlim(1);