diff --git a/ArchiSteamFarm/config/ASF.json b/ArchiSteamFarm/config/ASF.json index b7e104ac3..1a592f6c1 100644 --- a/ArchiSteamFarm/config/ASF.json +++ b/ArchiSteamFarm/config/ASF.json @@ -1,29 +1,29 @@ { - "Debug": false, - "Headless": false, - "AutoUpdates": true, - "AutoRestart": true, - "UpdateChannel": 1, - "SteamProtocol": 6, - "SteamOwnerID": 0, - "MaxFarmingTime": 10, - "IdleFarmingPeriod": 3, - "FarmingDelay": 15, - "LoginLimiterDelay": 10, - "InventoryLimiterDelay": 3, - "GiftsLimiterDelay": 1, - "MaxTradeHoldDuration": 15, - "HttpTimeout": 60, - "WCFHost": "127.0.0.1", - "WCFPort": 1242, - "Statistics": true, - "Blacklist": [ - 267420, - 303700, - 335590, - 368020, - 425280, - 480730, - 566020 - ] -} \ No newline at end of file + "AutoRestart": true, + "AutoUpdates": true, + "Blacklist": [ + 267420, + 303700, + 335590, + 368020, + 425280, + 480730, + 566020 + ], + "Debug": false, + "FarmingDelay": 15, + "GiftsLimiterDelay": 1, + "Headless": false, + "HttpTimeout": 60, + "IdleFarmingPeriod": 3, + "InventoryLimiterDelay": 3, + "LoginLimiterDelay": 10, + "MaxFarmingTime": 10, + "MaxTradeHoldDuration": 15, + "Statistics": true, + "SteamOwnerID": 0, + "SteamProtocol": 6, + "UpdateChannel": 1, + "WCFHost": "127.0.0.1", + "WCFPort": 1242 +} diff --git a/ArchiSteamFarm/config/example.json b/ArchiSteamFarm/config/example.json index c937237f9..579fe2be5 100644 --- a/ArchiSteamFarm/config/example.json +++ b/ArchiSteamFarm/config/example.json @@ -1,30 +1,34 @@ { - "AcceptConfirmationsPeriod" : 0, - "AcceptGifts" : false, - "CardDropsRestricted" : true, - "CustomGamePlayedWhileFarming" : null, - "CustomGamePlayedWhileIdle" : null, - "DismissInventoryNotifications" : true, - "DistributeKeys" : false, - "Enabled" : false, - "FarmOffline" : false, - "FarmingOrder" : 0, - "ForwardKeysToOtherBots" : false, - "GamesPlayedWhileIdle" : [], - "HandleOfflineMessages" : false, - "IsBotAccount" : false, - "LootableTypes" : [ 1, 5, 7 ], - "PasswordFormat" : 0, - "Paused" : false, - "SendOnFarmingFinished" : false, - "SendTradePeriod" : 0, - "ShutdownOnFarmingFinished" : false, - "SteamApiKey" : null, - "SteamLogin" : null, - "SteamMasterClanID" : 0, - "SteamMasterID" : 0, - "SteamParentalPIN" : "0", - "SteamPassword" : null, - "SteamTradeToken" : null, - "TradingPreferences" : 1 + "AcceptConfirmationsPeriod": 0, + "AcceptGifts": false, + "CardDropsRestricted": true, + "CustomGamePlayedWhileFarming": null, + "CustomGamePlayedWhileIdle": null, + "DismissInventoryNotifications": true, + "DistributeKeys": false, + "Enabled": false, + "FarmingOrder": 0, + "FarmOffline": false, + "ForwardKeysToOtherBots": false, + "GamesPlayedWhileIdle": [], + "HandleOfflineMessages": false, + "IsBotAccount": false, + "LootableTypes": [ + 1, + 5, + 7 + ], + "PasswordFormat": 0, + "Paused": false, + "SendOnFarmingFinished": false, + "SendTradePeriod": 0, + "ShutdownOnFarmingFinished": false, + "SteamApiKey": null, + "SteamLogin": null, + "SteamMasterClanID": 0, + "SteamMasterID": 0, + "SteamParentalPIN": "0", + "SteamPassword": null, + "SteamTradeToken": null, + "TradingPreferences": 1 } diff --git a/ArchiSteamFarm/config/minimal.json b/ArchiSteamFarm/config/minimal.json index a75051327..0fbfec585 100644 --- a/ArchiSteamFarm/config/minimal.json +++ b/ArchiSteamFarm/config/minimal.json @@ -1,5 +1,5 @@ { - "Enabled": false, - "SteamLogin": null, - "SteamPassword": null -} \ No newline at end of file + "Enabled": false, + "SteamLogin": null, + "SteamPassword": null +} diff --git a/ConfigGenerator/BotConfig.cs b/ConfigGenerator/BotConfig.cs index d4e6456e5..c7a42bf3a 100644 --- a/ConfigGenerator/BotConfig.cs +++ b/ConfigGenerator/BotConfig.cs @@ -85,7 +85,7 @@ namespace ConfigGenerator { public bool IsBotAccount { get; set; } = false; [JsonProperty(Required = Required.DisallowNull)] - public List LootableTypes = new List { Steam.Item.EType.BoosterPack, Steam.Item.EType.FoilTradingCard, Steam.Item.EType.TradingCard }; + public List LootableTypes { get; set; } = new List { Steam.Item.EType.BoosterPack, Steam.Item.EType.FoilTradingCard, Steam.Item.EType.TradingCard }; [Category("\tAccess")] [JsonProperty(Required = Required.DisallowNull)]