summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Models
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-08-31 00:48:34 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-08-31 00:48:34 -0400
commitff8ffbdef0306254094258be326d75fcdc2bcbe1 (patch)
tree2896652d10e26f33923575522b30accacaab2222 /src/SMAPI/Framework/Models
parent4af0786ecb6b16826b2a23b1448c3ab8f5ccd569 (diff)
downloadSMAPI-ff8ffbdef0306254094258be326d75fcdc2bcbe1.tar.gz
SMAPI-ff8ffbdef0306254094258be326d75fcdc2bcbe1.tar.bz2
SMAPI-ff8ffbdef0306254094258be326d75fcdc2bcbe1.zip
add paranoid warnings mode (#590)
Diffstat (limited to 'src/SMAPI/Framework/Models')
-rw-r--r--src/SMAPI/Framework/Models/SConfig.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI/Framework/Models/SConfig.cs b/src/SMAPI/Framework/Models/SConfig.cs
index 15671af4..bdfaa670 100644
--- a/src/SMAPI/Framework/Models/SConfig.cs
+++ b/src/SMAPI/Framework/Models/SConfig.cs
@@ -14,6 +14,9 @@ namespace StardewModdingAPI.Framework.Models
/// <summary>Whether to check for newer versions of SMAPI and mods on startup.</summary>
public bool CheckForUpdates { get; set; }
+ /// <summary>Whether to add a section to the 'mod issues' list for mods which which directly use potentially sensitive .NET APIs like file or shell access.</summary>
+ public bool ParanoidWarnings { get; set; }
+
/// <summary>Whether to show beta versions as valid updates.</summary>
public bool UseBetaChannel { get; set; } = Constants.ApiVersion.IsPrerelease();