Skip to content

Commit

Permalink
Closes #371
Browse files Browse the repository at this point in the history
  • Loading branch information
JustArchi committed Dec 15, 2016
1 parent aa06342 commit 1bb1941
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ArchiSteamFarm/GlobalConfig.cs
Expand Up @@ -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<uint> GlobalBlacklist = new HashSet<uint> { 267420, 303700, 335590, 368020, 425280, 480730 };
internal static readonly HashSet<uint> GlobalBlacklist = new HashSet<uint> { 267420, 303700, 335590, 368020, 425280, 480730, 566020 };

[JsonProperty(Required = Required.DisallowNull)]
internal readonly bool AutoRestart = true;
Expand Down
3 changes: 2 additions & 1 deletion ArchiSteamFarm/config/ASF.json
Expand Up @@ -24,6 +24,7 @@
335590,
368020,
425280,
480730
480730,
566020
]
}
2 changes: 1 addition & 1 deletion ConfigGenerator/GlobalConfig.cs
Expand Up @@ -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<uint> GlobalBlacklist = new HashSet<uint> { 267420, 303700, 335590, 368020, 425280, 480730 };
private static readonly HashSet<uint> GlobalBlacklist = new HashSet<uint> { 267420, 303700, 335590, 368020, 425280, 480730, 566020 };

[Category("\tUpdates")]
[JsonProperty(Required = Required.DisallowNull)]
Expand Down

0 comments on commit 1bb1941

Please sign in to comment.