From e44b7d3248cd5d10c46f64039250634cfb68f9ad Mon Sep 17 00:00:00 2001 From: Archi Date: Sat, 11 Nov 2023 14:53:44 +0100 Subject: [PATCH] Fix wrong access for version command FamilySharing is alright, as per the wiki --- ArchiSteamFarm/Steam/Interaction/Commands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Steam/Interaction/Commands.cs b/ArchiSteamFarm/Steam/Interaction/Commands.cs index 50f3326c6..c5f182642 100644 --- a/ArchiSteamFarm/Steam/Interaction/Commands.cs +++ b/ArchiSteamFarm/Steam/Interaction/Commands.cs @@ -3432,7 +3432,7 @@ public sealed class Commands { throw new InvalidEnumArgumentException(nameof(access), (int) access, typeof(EAccess)); } - return access >= EAccess.Operator ? FormatBotResponse(string.Format(CultureInfo.CurrentCulture, Strings.BotVersion, SharedInfo.ASF, SharedInfo.Version)) : null; + return access >= EAccess.FamilySharing ? FormatBotResponse(string.Format(CultureInfo.CurrentCulture, Strings.BotVersion, SharedInfo.ASF, SharedInfo.Version)) : null; } private string? ResponseWalletBalance(EAccess access) {