Misc readability improvement

This commit is contained in:
JustArchi
2017-01-05 21:08:13 +01:00
parent ab020ed5a2
commit bdc354d07c
4 changed files with 24 additions and 7 deletions

View File

@@ -80,7 +80,11 @@ namespace ConfigGenerator {
[Category("\tAdvanced")]
[JsonProperty(ObjectCreationHandling = ObjectCreationHandling.Replace, Required = Required.DisallowNull)]
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 };
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)]