mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 14:10:53 +00:00
Update BotConfig.cs
This commit is contained in:
@@ -510,7 +510,7 @@ public sealed class BotConfig {
|
||||
return (false, Strings.FormatErrorConfigPropertyInvalid(nameof(TradingPreferences), TradingPreferences));
|
||||
}
|
||||
|
||||
return !Enum.IsDefined(UserInterfaceMode) ? (false, Strings.FormatErrorConfigPropertyInvalid(nameof(UserInterfaceMode), UserInterfaceMode)) : (true, null);
|
||||
return (UserInterfaceMode < EUIMode.VGUI) || !Enum.IsDefined(UserInterfaceMode) ? (false, Strings.FormatErrorConfigPropertyInvalid(nameof(UserInterfaceMode), UserInterfaceMode)) : (true, null);
|
||||
}
|
||||
|
||||
internal async Task<string?> GetDecryptedSteamPassword() {
|
||||
|
||||
Reference in New Issue
Block a user