From ec4439afb43deb6019259dd3b4b5430b1808d7e3 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Thu, 9 Feb 2017 13:16:30 +0100 Subject: [PATCH] Make DismissInventoryNotifications false by default The amount of people that have no clue what is happening is too damn high. --- ArchiSteamFarm/BotConfig.cs | 2 +- ArchiSteamFarm/config/example.json | 2 +- ConfigGenerator/BotConfig.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ArchiSteamFarm/BotConfig.cs b/ArchiSteamFarm/BotConfig.cs index d61b3a732..0bc094fab 100644 --- a/ArchiSteamFarm/BotConfig.cs +++ b/ArchiSteamFarm/BotConfig.cs @@ -53,7 +53,7 @@ namespace ArchiSteamFarm { internal readonly string CustomGamePlayedWhileIdle = null; [JsonProperty(Required = Required.DisallowNull)] - internal readonly bool DismissInventoryNotifications = true; + internal readonly bool DismissInventoryNotifications = false; [JsonProperty(Required = Required.DisallowNull)] internal readonly bool Enabled = false; diff --git a/ArchiSteamFarm/config/example.json b/ArchiSteamFarm/config/example.json index fadf4fd92..9c3968364 100644 --- a/ArchiSteamFarm/config/example.json +++ b/ArchiSteamFarm/config/example.json @@ -4,7 +4,7 @@ "CardDropsRestricted": true, "CustomGamePlayedWhileFarming": null, "CustomGamePlayedWhileIdle": null, - "DismissInventoryNotifications": true, + "DismissInventoryNotifications": false, "Enabled": false, "FarmingOrder": 0, "FarmOffline": false, diff --git a/ConfigGenerator/BotConfig.cs b/ConfigGenerator/BotConfig.cs index e6215c9e8..9b82ce285 100644 --- a/ConfigGenerator/BotConfig.cs +++ b/ConfigGenerator/BotConfig.cs @@ -55,7 +55,7 @@ namespace ConfigGenerator { public string CustomGamePlayedWhileIdle { get; set; } = null; [JsonProperty(Required = Required.DisallowNull)] - public bool DismissInventoryNotifications { get; set; } = true; + public bool DismissInventoryNotifications { get; set; } = false; [LocalizedCategory("Core")] [JsonProperty(Required = Required.DisallowNull)]