Make DismissInventoryNotifications false by default

The amount of people that have no clue what is happening is too damn high.
This commit is contained in:
JustArchi
2017-02-09 13:16:30 +01:00
parent d7f2610313
commit ec4439afb4
3 changed files with 3 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ namespace ArchiSteamFarm {
internal readonly string CustomGamePlayedWhileIdle = null; internal readonly string CustomGamePlayedWhileIdle = null;
[JsonProperty(Required = Required.DisallowNull)] [JsonProperty(Required = Required.DisallowNull)]
internal readonly bool DismissInventoryNotifications = true; internal readonly bool DismissInventoryNotifications = false;
[JsonProperty(Required = Required.DisallowNull)] [JsonProperty(Required = Required.DisallowNull)]
internal readonly bool Enabled = false; internal readonly bool Enabled = false;

View File

@@ -4,7 +4,7 @@
"CardDropsRestricted": true, "CardDropsRestricted": true,
"CustomGamePlayedWhileFarming": null, "CustomGamePlayedWhileFarming": null,
"CustomGamePlayedWhileIdle": null, "CustomGamePlayedWhileIdle": null,
"DismissInventoryNotifications": true, "DismissInventoryNotifications": false,
"Enabled": false, "Enabled": false,
"FarmingOrder": 0, "FarmingOrder": 0,
"FarmOffline": false, "FarmOffline": false,

View File

@@ -55,7 +55,7 @@ namespace ConfigGenerator {
public string CustomGamePlayedWhileIdle { get; set; } = null; public string CustomGamePlayedWhileIdle { get; set; } = null;
[JsonProperty(Required = Required.DisallowNull)] [JsonProperty(Required = Required.DisallowNull)]
public bool DismissInventoryNotifications { get; set; } = true; public bool DismissInventoryNotifications { get; set; } = false;
[LocalizedCategory("Core")] [LocalizedCategory("Core")]
[JsonProperty(Required = Required.DisallowNull)] [JsonProperty(Required = Required.DisallowNull)]