diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2023-03-26 13:28:53 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2023-04-09 13:16:46 -0400 |
commit | 5d4c733894404d19a3137a3b4d7e5fc015ecda42 (patch) | |
tree | 632cbadaf69e7e93455f1b4703fc306e11aa76d7 /src/SMAPI/Constants.cs | |
parent | 212634ab551b84182ac09614047fbf5a4f3723ff (diff) | |
download | SMAPI-5d4c733894404d19a3137a3b4d7e5fc015ecda42.tar.gz SMAPI-5d4c733894404d19a3137a3b4d7e5fc015ecda42.tar.bz2 SMAPI-5d4c733894404d19a3137a3b4d7e5fc015ecda42.zip |
update release notes & tweak recent changes
Diffstat (limited to 'src/SMAPI/Constants.cs')
-rw-r--r-- | src/SMAPI/Constants.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index e5601747..27e9bfd2 100644 --- a/src/SMAPI/Constants.cs +++ b/src/SMAPI/Constants.cs @@ -139,11 +139,11 @@ namespace StardewModdingAPI /// <summary>The file path for the SMAPI configuration file.</summary> internal static string ApiConfigPath => Path.Combine(Constants.InternalFilesPath, "config.json"); - /// <summary>The file path for the overrides file for <see cref="ApiConfigPath"/>, which is applied over it.</summary> + /// <summary>The file path for the per-user <see cref="ApiConfigPath"/> override file, which is applied over it.</summary> internal static string ApiUserConfigPath => Path.Combine(Constants.InternalFilesPath, "config.user.json"); - /// <summary>The mod-group-specific file path for the overrides file for <see cref="ApiConfigPath"/>, which is applied over it.</summary> - internal static string ApiModGroupConfigPath => Path.Combine(ModsPath, "config.json"); + /// <summary>The file path for the per-mods-folder <see cref="ApiConfigPath"/> override file, which is applied over it.</summary> + internal static string ApiModGroupConfigPath => Path.Combine(ModsPath, "SMAPI-config.json"); /// <summary>The file path for the SMAPI metadata file.</summary> internal static string ApiMetadataPath => Path.Combine(Constants.InternalFilesPath, "metadata.json"); |