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;