From 5423596f1f61869ca3cab45ff26b50bd9d62588d Mon Sep 17 00:00:00 2001 From: JustArchi Date: Thu, 1 Nov 2018 03:03:49 +0100 Subject: [PATCH] Remove obsolete properties --- ArchiSteamFarm/BotConfig.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/ArchiSteamFarm/BotConfig.cs b/ArchiSteamFarm/BotConfig.cs index b16f7989b..76556d413 100644 --- a/ArchiSteamFarm/BotConfig.cs +++ b/ArchiSteamFarm/BotConfig.cs @@ -224,16 +224,6 @@ namespace ArchiSteamFarm { } } - [JsonProperty] - private string SteamParentalPIN { - set { - if (string.IsNullOrEmpty(value) || (value != "0")) { - ASF.ArchiLogger.LogGenericWarning(string.Format(Strings.WarningDeprecated, nameof(SteamParentalPIN), nameof(SteamParentalCode))); - SteamParentalCode = string.IsNullOrEmpty(value) ? "0" : value; - } - } - } - internal (bool Valid, string ErrorMessage) CheckValidation() { if (BotBehaviour > EBotBehaviour.All) { return (false, string.Format(Strings.ErrorConfigPropertyInvalid, nameof(BotBehaviour), BotBehaviour));