[EXPERIMENTAL] Queue discovery

Yes, you know my donation address
This commit is contained in:
JustArchi
2016-12-23 03:01:37 +01:00
parent b781195b77
commit 90d74de169
7 changed files with 292 additions and 14 deletions

View File

@@ -82,6 +82,7 @@ namespace ArchiSteamFarm {
private readonly SteamClient SteamClient;
private readonly ConcurrentHashSet<ulong> SteamFamilySharingIDs = new ConcurrentHashSet<ulong>();
private readonly SteamFriends SteamFriends;
private readonly SteamSaleEvent SteamSaleEvent;
private readonly SteamUser SteamUser;
private readonly Trading Trading;
@@ -206,6 +207,7 @@ namespace ArchiSteamFarm {
CardsFarmer = new CardsFarmer(this);
CardsFarmer.SetInitialState(BotConfig.Paused);
SteamSaleEvent = new SteamSaleEvent(this);
Trading = new Trading(this);
if (Program.GlobalConfig.Statistics) {
@@ -232,6 +234,7 @@ namespace ArchiSteamFarm {
InitializationSemaphore.Dispose();
SteamFamilySharingIDs.Dispose();
OwnedPackageIDs.Dispose();
SteamSaleEvent.Dispose();
Trading.Dispose();
// Those are objects that might be null and the check should be in-place