diff --git a/ArchiSteamFarm/GlobalConfig.cs b/ArchiSteamFarm/GlobalConfig.cs index 4807a7ceb2280..b8d13e46bff1c 100644 --- a/ArchiSteamFarm/GlobalConfig.cs +++ b/ArchiSteamFarm/GlobalConfig.cs @@ -42,7 +42,7 @@ internal sealed class GlobalConfig { private const ushort DefaultWCFPort = 1242; // This is hardcoded blacklist which should not be possible to change - internal static readonly HashSet GlobalBlacklist = new HashSet { 267420, 303700, 335590, 368020, 425280, 480730 }; + internal static readonly HashSet GlobalBlacklist = new HashSet { 267420, 303700, 335590, 368020, 425280, 480730, 566020 }; [JsonProperty(Required = Required.DisallowNull)] internal readonly bool AutoRestart = true; diff --git a/ArchiSteamFarm/config/ASF.json b/ArchiSteamFarm/config/ASF.json index acfb958c61f96..03cba2cc6d27b 100644 --- a/ArchiSteamFarm/config/ASF.json +++ b/ArchiSteamFarm/config/ASF.json @@ -24,6 +24,7 @@ 335590, 368020, 425280, - 480730 + 480730, + 566020 ] } \ No newline at end of file diff --git a/ConfigGenerator/GlobalConfig.cs b/ConfigGenerator/GlobalConfig.cs index f009d9a54e2cb..a34ffb57047e6 100644 --- a/ConfigGenerator/GlobalConfig.cs +++ b/ConfigGenerator/GlobalConfig.cs @@ -43,7 +43,7 @@ internal sealed class GlobalConfig : ASFConfig { private const ushort DefaultWCFPort = 1242; // This is hardcoded blacklist which should not be possible to change - private static readonly HashSet GlobalBlacklist = new HashSet { 267420, 303700, 335590, 368020, 425280, 480730 }; + private static readonly HashSet GlobalBlacklist = new HashSet { 267420, 303700, 335590, 368020, 425280, 480730, 566020 }; [Category("\tUpdates")] [JsonProperty(Required = Required.DisallowNull)]