From 8b8671c6792854800c7150bed2b5863c9829d108 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Mon, 14 Aug 2017 17:58:30 +0200 Subject: [PATCH] Use TCP by default We'll play it safe, websocket/udp is not fully tested yet. --- ArchiSteamFarm/GlobalConfig.cs | 2 +- ArchiSteamFarm/config/ASF.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ArchiSteamFarm/GlobalConfig.cs b/ArchiSteamFarm/GlobalConfig.cs index e97536e0e..f8c9ee82a 100644 --- a/ArchiSteamFarm/GlobalConfig.cs +++ b/ArchiSteamFarm/GlobalConfig.cs @@ -105,7 +105,7 @@ namespace ArchiSteamFarm { internal readonly bool Statistics = true; [JsonProperty(Required = Required.DisallowNull)] - internal readonly ProtocolTypes SteamProtocols = ProtocolTypes.All; + internal readonly ProtocolTypes SteamProtocols = ProtocolTypes.Tcp; [JsonProperty(Required = Required.DisallowNull)] internal readonly EUpdateChannel UpdateChannel = EUpdateChannel.Stable; diff --git a/ArchiSteamFarm/config/ASF.json b/ArchiSteamFarm/config/ASF.json index 5d13f4eb6..8490d3bd0 100644 --- a/ArchiSteamFarm/config/ASF.json +++ b/ArchiSteamFarm/config/ASF.json @@ -19,6 +19,6 @@ "OptimizationMode": 0, "Statistics": true, "SteamOwnerID": 0, - "SteamProtocols": 7, + "SteamProtocols": 1, "UpdateChannel": 1 } \ No newline at end of file