Update timers

This commit is contained in:
JustArchi
2018-12-03 00:59:01 +01:00
parent ec26a30ddf
commit 4582c40dbe
2 changed files with 3 additions and 3 deletions

View File

@@ -39,8 +39,8 @@ namespace ArchiSteamFarm {
SaleEventTimer = new Timer(
async e => await Task.WhenAll(ExploreDiscoveryQueue(), VoteForSteamAwards()).ConfigureAwait(false),
null,
TimeSpan.FromHours(1) + TimeSpan.FromSeconds(Program.LoadBalancingDelay * Bot.Bots.Count), // Delay
TimeSpan.FromHours(6.1) // Period
TimeSpan.FromHours(1.1) + TimeSpan.FromSeconds(Program.LoadBalancingDelay * Bot.Bots.Count), // Delay
TimeSpan.FromHours(8.1) // Period
);
}