Modify TradingPreferences default to None

Since introducing automated API keys, we do not want to make AcceptDonations the default option.
Existing configs will not be changed anyway.
This commit is contained in:
JustArchi
2017-02-03 08:57:42 +01:00
parent bd9fde0799
commit 0d6942b8ec
3 changed files with 3 additions and 3 deletions

View File

@@ -136,7 +136,7 @@ namespace ConfigGenerator {
[LocalizedCategory("Advanced")]
[Editor(typeof(FlagEnumUiEditor), typeof(UITypeEditor))]
[JsonProperty(Required = Required.DisallowNull)]
public ETradingPreferences TradingPreferences { get; set; } = ETradingPreferences.AcceptDonations;
public ETradingPreferences TradingPreferences { get; set; } = ETradingPreferences.None;
[SuppressMessage("ReSharper", "UnusedMember.Local")]
private BotConfig() { }