From 6a43171e9242e53e299b38dd88370d7070d9186e Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Tue, 26 Apr 2022 23:38:16 -0400 Subject: re-enable Pintail by default --- src/SMAPI/Framework/Models/SConfig.cs | 2 +- src/SMAPI/SMAPI.config.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/SMAPI') diff --git a/src/SMAPI/Framework/Models/SConfig.cs b/src/SMAPI/Framework/Models/SConfig.cs index af2e1035..1a43c1fc 100644 --- a/src/SMAPI/Framework/Models/SConfig.cs +++ b/src/SMAPI/Framework/Models/SConfig.cs @@ -23,7 +23,7 @@ namespace StardewModdingAPI.Framework.Models [nameof(LogNetworkTraffic)] = false, [nameof(RewriteMods)] = true, [nameof(AggressiveMemoryOptimizations)] = false, - [nameof(UsePintail)] = false + [nameof(UsePintail)] = true }; /// The default values for , to log changes if different. diff --git a/src/SMAPI/SMAPI.config.json b/src/SMAPI/SMAPI.config.json index a317e6b8..065dfa8c 100644 --- a/src/SMAPI/SMAPI.config.json +++ b/src/SMAPI/SMAPI.config.json @@ -50,7 +50,7 @@ copy all the settings, or you may cause bugs due to overridden changes in future * Whether to use the experimental Pintail API proxying library, instead of the original * proxying built into SMAPI itself. */ - "UsePintail": false, + "UsePintail": true, /** * Whether to add a section to the 'mod issues' list for mods which directly use potentially -- cgit