From 07b84d8452cebb8dd098ee77a6b274b2f083b75d Mon Sep 17 00:00:00 2001 From: JustArchi Date: Mon, 20 Mar 2017 17:21:56 +0100 Subject: [PATCH] Increase statistics defaults --- ArchiSteamFarm/Statistics.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ArchiSteamFarm/Statistics.cs b/ArchiSteamFarm/Statistics.cs index 71afb25b6..69bf2a6d6 100644 --- a/ArchiSteamFarm/Statistics.cs +++ b/ArchiSteamFarm/Statistics.cs @@ -32,9 +32,9 @@ using SteamKit2; namespace ArchiSteamFarm { internal sealed class Statistics : IDisposable { - private const byte MinAnnouncementCheckTTL = 1; // Minimum amount of hours we must wait before checking eligibility for Announcement, should be lower than MinPersonaStateTTL + private const byte MinAnnouncementCheckTTL = 6; // Minimum amount of hours we must wait before checking eligibility for Announcement, should be lower than MinPersonaStateTTL private const byte MinHeartBeatTTL = 10; // Minimum amount of minutes we must wait before sending next HeartBeat - private const byte MinPersonaStateTTL = 3; // Minimum amount of hours we must wait before requesting persona state update + private const byte MinPersonaStateTTL = 8; // Minimum amount of hours we must wait before requesting persona state update private static readonly SemaphoreSlim InitializationSemaphore = new SemaphoreSlim(1);