From fef7860564da2f27391869bd1c65fe8f84e109a4 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Tue, 3 Dec 2019 18:58:02 +0100 Subject: [PATCH] Misc fix --- ArchiSteamFarm/Plugins/PluginsCore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Plugins/PluginsCore.cs b/ArchiSteamFarm/Plugins/PluginsCore.cs index 172757774..548915347 100644 --- a/ArchiSteamFarm/Plugins/PluginsCore.cs +++ b/ArchiSteamFarm/Plugins/PluginsCore.cs @@ -289,7 +289,7 @@ namespace ArchiSteamFarm.Plugins { } internal static async Task OnBotFriendRequest(Bot bot, ulong steamID) { - if ((bot == null) || (steamID == 0) || !new SteamID(steamID).IsIndividualAccount) { + if ((bot == null) || (steamID == 0) || !new SteamID(steamID).IsValid) { ASF.ArchiLogger.LogNullError(nameof(bot) + " || " + nameof(steamID)); return false;