Adapt delays for lower misses

This commit is contained in:
JustArchi
2016-12-23 03:24:37 +01:00
parent 90d74de169
commit e3f87e4a19

View File

@@ -27,14 +27,14 @@ namespace ArchiSteamFarm {
async e => await VoteForSteamAwards().ConfigureAwait(false),
null,
TimeSpan.FromMinutes(1 + 0.2 * Bot.Bots.Count), // Delay
TimeSpan.FromHours(6) // Period
TimeSpan.FromHours(6.1) // Period
);
SteamDiscoveryQueueTimer = new Timer(
async e => await ExploreDiscoveryQueue().ConfigureAwait(false),
null,
TimeSpan.FromMinutes(1 + 0.2 * Bot.Bots.Count), // Delay
TimeSpan.FromHours(6) // Period
TimeSpan.FromHours(6.1) // Period
);
}