diff --git a/ArchiSteamFarm/Bot.cs b/ArchiSteamFarm/Bot.cs index 5a15e45c0..763455f5b 100755 --- a/ArchiSteamFarm/Bot.cs +++ b/ArchiSteamFarm/Bot.cs @@ -42,6 +42,8 @@ namespace ArchiSteamFarm { private static readonly ConcurrentDictionary Bots = new ConcurrentDictionary(); private static readonly uint LoginID = MsgClientLogon.ObfuscationMask; // This must be the same for all ASF bots and all ASF processes + internal static readonly HashSet GlobalBlacklist = new HashSet { 303700, 335590, 368020, 425280 }; + private readonly string ConfigFile, LoginKeyFile, MobileAuthenticatorFile, SentryFile; internal readonly string BotName; @@ -73,7 +75,7 @@ namespace ArchiSteamFarm { internal bool HandleOfflineMessages { get; private set; } = false; internal bool UseAsfAsMobileAuthenticator { get; private set; } = false; internal bool ShutdownOnFarmingFinished { get; private set; } = false; - internal HashSet Blacklist { get; private set; } = new HashSet { 303700, 335590, 368020, 425280 }; + internal HashSet Blacklist { get; private set; } = new HashSet(); internal bool Statistics { get; private set; } = true; private static bool IsValidCdKey(string key) { diff --git a/ArchiSteamFarm/CardsFarmer.cs b/ArchiSteamFarm/CardsFarmer.cs index 6da840cfe..e9c2ba672 100755 --- a/ArchiSteamFarm/CardsFarmer.cs +++ b/ArchiSteamFarm/CardsFarmer.cs @@ -194,7 +194,7 @@ namespace ArchiSteamFarm { continue; } - if (Bot.Blacklist.Contains(appID)) { + if (Bot.GlobalBlacklist.Contains(appID) || Bot.Blacklist.Contains(appID)) { continue; }