Adapt structure of JSON files to the one generated by sorted ConfigGenerator

This commit is contained in:
JustArchi
2016-12-25 06:04:29 +01:00
parent a28ad1fdac
commit eb88814c72
4 changed files with 65 additions and 61 deletions

View File

@@ -85,7 +85,7 @@ namespace ConfigGenerator {
public bool IsBotAccount { get; set; } = false;
[JsonProperty(Required = Required.DisallowNull)]
public List<Steam.Item.EType> LootableTypes = new List<Steam.Item.EType> { Steam.Item.EType.BoosterPack, Steam.Item.EType.FoilTradingCard, Steam.Item.EType.TradingCard };
public List<Steam.Item.EType> LootableTypes { get; set; } = new List<Steam.Item.EType> { Steam.Item.EType.BoosterPack, Steam.Item.EType.FoilTradingCard, Steam.Item.EType.TradingCard };
[Category("\tAccess")]
[JsonProperty(Required = Required.DisallowNull)]