This commit is contained in:
Archi
2021-06-30 20:41:55 +02:00
parent 874eb4d3a6
commit 162ecf93ac
2 changed files with 2 additions and 2 deletions

View File

@@ -63,8 +63,8 @@ namespace ArchiSteamFarm.IPC.Integration {
break;
case nameof(BotConfig.SteamMasterClanID):
schema.Maximum = new SteamID(uint.MaxValue, EUniverse.Public, EAccountType.Clan);
schema.Minimum = new SteamID(1, EUniverse.Public, EAccountType.Clan);
schema.Maximum = new SteamID(uint.MaxValue, EUniverse.Public, EAccountType.Clan);
validValues = new OpenApiArray();

View File

@@ -51,8 +51,8 @@ namespace ArchiSteamFarm.IPC.Integration {
break;
case nameof(GlobalConfig.SteamOwnerID):
schema.Maximum = new SteamID(uint.MaxValue, EUniverse.Public, EAccountType.Individual);
schema.Minimum = new SteamID(1, EUniverse.Public, EAccountType.Individual);
schema.Maximum = new SteamID(uint.MaxValue, EUniverse.Public, EAccountType.Individual);
OpenApiArray validValues = new();