From 1dc2b1e06ea5944f9b9392ce6e1b158f9e44c385 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Thu, 21 Jul 2022 16:50:15 +0200 Subject: [PATCH] Misc --- ArchiSteamFarm/Core/ASF.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Core/ASF.cs b/ArchiSteamFarm/Core/ASF.cs index 43574844b..3288352f7 100644 --- a/ArchiSteamFarm/Core/ASF.cs +++ b/ArchiSteamFarm/Core/ASF.cs @@ -87,7 +87,7 @@ public static class ASF { [PublicAPI] public static bool IsOwner(ulong steamID) { - if (steamID == 0) { + if ((steamID == 0) || !new SteamID(steamID).IsIndividualAccount) { throw new ArgumentOutOfRangeException(nameof(steamID)); }