summaryrefslogtreecommitdiff
path: root/src/SMAPI/SMAPI.config.json
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-11-11 01:29:30 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-11-11 01:29:30 -0500
commit133aeab3fccb3acdfaff8b128cbfafda03b7c8fc (patch)
tree4ab4fe6e9f0a77eff90f03665987f1afc58489e6 /src/SMAPI/SMAPI.config.json
parenteaacfd04b8d526d9d190c864231f5f365e19a7da (diff)
parentdbf7750f3e27cf7c50e2f06005fd14da95627dc3 (diff)
downloadSMAPI-133aeab3fccb3acdfaff8b128cbfafda03b7c8fc.tar.gz
SMAPI-133aeab3fccb3acdfaff8b128cbfafda03b7c8fc.tar.bz2
SMAPI-133aeab3fccb3acdfaff8b128cbfafda03b7c8fc.zip
Merge pull request #882 from Shockah/mod-load-order
Add options to override mod load order # Conflicts: # src/SMAPI/Framework/Models/SConfig.cs
Diffstat (limited to 'src/SMAPI/SMAPI.config.json')
-rw-r--r--src/SMAPI/SMAPI.config.json14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/SMAPI/SMAPI.config.json b/src/SMAPI/SMAPI.config.json
index 52f25fdd..0d00db4d 100644
--- a/src/SMAPI/SMAPI.config.json
+++ b/src/SMAPI/SMAPI.config.json
@@ -147,5 +147,17 @@ copy all the settings, or you may cause bugs due to overridden changes in future
"SMAPI.ConsoleCommands",
"SMAPI.ErrorHandler",
"SMAPI.SaveBackup"
- ]
+ ],
+
+ /**
+ * The mod IDs SMAPI should load before any other mods (except those needed to load them)
+ * or after any other mods.
+ *
+ * This lets you manually fix the load order if needed, but this is a last resort — SMAPI
+ * automatically adjusts the load order based on mods' dependencies, so needing to manually
+ * edit the order is usually a problem with one or both mods' metadata that can be reported to
+ * the mod author.
+ */
+ "ModsToLoadEarly": [],
+ "ModsToLoadLate": []
}