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)]