diff options
author | Michał Dolaś <me@shockah.pl> | 2022-11-09 19:50:32 +0100 |
---|---|---|
committer | Michał Dolaś <me@shockah.pl> | 2022-11-09 19:50:32 +0100 |
commit | 42b4b6b6a4ae1bb59182857b383539b24b063215 (patch) | |
tree | 5d40a8367bd975b94d14598356bda3fcf2be470b /src/SMAPI/SMAPI.config.json | |
parent | bb2fde18292352471501887013ca2b7f60a9dc25 (diff) | |
download | SMAPI-42b4b6b6a4ae1bb59182857b383539b24b063215.tar.gz SMAPI-42b4b6b6a4ae1bb59182857b383539b24b063215.tar.bz2 SMAPI-42b4b6b6a4ae1bb59182857b383539b24b063215.zip |
Renamed first/last to early/late; ignoring mods declared as both and warning about those
Diffstat (limited to 'src/SMAPI/SMAPI.config.json')
-rw-r--r-- | src/SMAPI/SMAPI.config.json | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/SMAPI/SMAPI.config.json b/src/SMAPI/SMAPI.config.json index 1a342df2..68645d24 100644 --- a/src/SMAPI/SMAPI.config.json +++ b/src/SMAPI/SMAPI.config.json @@ -144,12 +144,12 @@ copy all the settings, or you may cause bugs due to overridden changes in future ], /** - * The mod IDs SMAPI should try to load first, before any other mods not included in this list. + * The mod IDs SMAPI should try to load early, before any other mods not included in this list. */ - "ModsToLoadFirst": [], + "ModsToLoadEarly": [], /** - * The mod IDs SMAPI should try to load last, after all other mods not included in this list. + * The mod IDs SMAPI should try to load late, after all other mods not included in this list. */ - "ModsToLoadLast": [] + "ModsToLoadLate": [] } |