diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-08 12:24:52 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-08 12:24:52 -0400 |
commit | b924fbae4ba6c490b84d06453d7f46fecf480bf4 (patch) | |
tree | 345bd969287bf2fca650edece57969f00a3f4f7e /src/SMAPI/Framework | |
parent | 37617e9c26cad93dac462bc1893d167a4692d9df (diff) | |
download | SMAPI-b924fbae4ba6c490b84d06453d7f46fecf480bf4.tar.gz SMAPI-b924fbae4ba6c490b84d06453d7f46fecf480bf4.tar.bz2 SMAPI-b924fbae4ba6c490b84d06453d7f46fecf480bf4.zip |
fix default settings
Diffstat (limited to 'src/SMAPI/Framework')
-rw-r--r-- | src/SMAPI/Framework/Models/SConfig.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI/Framework/Models/SConfig.cs b/src/SMAPI/Framework/Models/SConfig.cs index d27c6311..1c7cd3ed 100644 --- a/src/SMAPI/Framework/Models/SConfig.cs +++ b/src/SMAPI/Framework/Models/SConfig.cs @@ -23,8 +23,8 @@ namespace StardewModdingAPI.Framework.Models [nameof(VerboseLogging)] = false, [nameof(LogNetworkTraffic)] = false, [nameof(RewriteMods)] = true, - [nameof(UsePintail)] = Constants.Platform is Platform.Android or Platform.Linux, - [nameof(UseCaseInsensitivePaths)] = false + [nameof(UsePintail)] = true, + [nameof(UseCaseInsensitivePaths)] = Constants.Platform is Platform.Android or Platform.Linux }; /// <summary>The default values for <see cref="SuppressUpdateChecks"/>, to log changes if different.</summary> |