This commit is contained in:
JustArchi
2019-03-03 16:22:25 +01:00
parent 2e160b444a
commit e6d07f5fd5
6 changed files with 8 additions and 7 deletions

View File

@@ -65,7 +65,7 @@ namespace ArchiSteamFarm {
MatchActivelyTimer = new Timer(
async e => await MatchActively().ConfigureAwait(false),
null,
TimeSpan.FromHours(1) + TimeSpan.FromSeconds(Program.LoadBalancingDelay * Bot.Bots.Count), // Delay
TimeSpan.FromHours(1) + TimeSpan.FromSeconds(ASF.LoadBalancingDelay * Bot.Bots.Count), // Delay
TimeSpan.FromHours(8) // Period
);
}