From fc0d0abaaf68323f08948b75ef873542c118703e Mon Sep 17 00:00:00 2001 From: JustArchi Date: Thu, 9 Jun 2016 19:12:16 +0200 Subject: [PATCH] Update blacklist, closes #232 --- ArchiSteamFarm/GlobalConfig.cs | 2 +- ArchiSteamFarm/config/ASF.json | 3 ++- ConfigGenerator/GlobalConfig.cs | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ArchiSteamFarm/GlobalConfig.cs b/ArchiSteamFarm/GlobalConfig.cs index 44204a284..5a25a5650 100644 --- a/ArchiSteamFarm/GlobalConfig.cs +++ b/ArchiSteamFarm/GlobalConfig.cs @@ -48,7 +48,7 @@ namespace ArchiSteamFarm { private const ProtocolType DefaultSteamProtocol = ProtocolType.Tcp; // This is hardcoded blacklist which should not be possible to change - internal static readonly HashSet GlobalBlacklist = new HashSet { 267420, 303700, 335590, 368020, 425280 }; + internal static readonly HashSet GlobalBlacklist = new HashSet { 267420, 303700, 335590, 368020, 425280, 480730 }; [JsonProperty(Required = Required.DisallowNull)] internal bool Debug { get; private set; } = false; diff --git a/ArchiSteamFarm/config/ASF.json b/ArchiSteamFarm/config/ASF.json index d1a1aa9d7..1582c0ffb 100644 --- a/ArchiSteamFarm/config/ASF.json +++ b/ArchiSteamFarm/config/ASF.json @@ -23,6 +23,7 @@ 303700, 335590, 368020, - 425280 + 425280, + 480730 ] } \ No newline at end of file diff --git a/ConfigGenerator/GlobalConfig.cs b/ConfigGenerator/GlobalConfig.cs index 1166b3eb8..6fc321ea3 100644 --- a/ConfigGenerator/GlobalConfig.cs +++ b/ConfigGenerator/GlobalConfig.cs @@ -48,7 +48,7 @@ namespace ConfigGenerator { private const ProtocolType DefaultSteamProtocol = ProtocolType.Tcp; // This is hardcoded blacklist which should not be possible to change - private static readonly HashSet GlobalBlacklist = new HashSet { 267420, 303700, 335590, 368020, 425280 }; + private static readonly HashSet GlobalBlacklist = new HashSet { 267420, 303700, 335590, 368020, 425280, 480730 }; [JsonProperty(Required = Required.DisallowNull)] public bool Debug { get; set; } = false;