diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-03-13 23:51:55 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-03-13 23:51:55 -0500 |
commit | 77629a528a2f93a2977a1bf63e2e18faaaffaaaf (patch) | |
tree | 968ef579f359052774742da65883204bcfe986e8 /src/SMAPI/SMAPI.config.json | |
parent | fc5fc54ab1c375e20b3e4f947bb11f08b4983bd1 (diff) | |
download | SMAPI-77629a528a2f93a2977a1bf63e2e18faaaffaaaf.tar.gz SMAPI-77629a528a2f93a2977a1bf63e2e18faaaffaaaf.tar.bz2 SMAPI-77629a528a2f93a2977a1bf63e2e18faaaffaaaf.zip |
disable aggressive memory optimizations by default
Diffstat (limited to 'src/SMAPI/SMAPI.config.json')
-rw-r--r-- | src/SMAPI/SMAPI.config.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/SMAPI/SMAPI.config.json b/src/SMAPI/SMAPI.config.json index a9e6f389..034eceed 100644 --- a/src/SMAPI/SMAPI.config.json +++ b/src/SMAPI/SMAPI.config.json @@ -41,9 +41,10 @@ copy all the settings, or you may cause bugs due to overridden changes in future /** * Whether to enable more aggressive memory optimizations. - * You can try disabling this if you get ObjectDisposedException errors. + * If you get frequent 'OutOfMemoryException' errors, you can try enabling this to reduce their + * frequency. This may cause crashes for farmhands in multiplayer. */ - "AggressiveMemoryOptimizations": true, + "AggressiveMemoryOptimizations": false, /** * Whether to add a section to the 'mod issues' list for mods which directly use potentially |