From 0ef55c4b1e2aea60bc7281c31b9ca0dac70f272a Mon Sep 17 00:00:00 2001 From: Michał Dolaś Date: Mon, 9 Jan 2023 11:39:38 +0100 Subject: Mod-group specific config.json overriding --- src/SMAPI/Constants.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/SMAPI/Constants.cs') diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index c5058e4b..3ff3159b 100644 --- a/src/SMAPI/Constants.cs +++ b/src/SMAPI/Constants.cs @@ -142,6 +142,9 @@ namespace StardewModdingAPI /// The file path for the overrides file for , which is applied over it. internal static string ApiUserConfigPath => Path.Combine(Constants.InternalFilesPath, "config.user.json"); + /// The mod-group-specific file path for the overrides file for , which is applied over it. + internal static string ApiModGroupConfigPath => Path.Combine(ModsPath, "config.json"); + /// The file path for the SMAPI metadata file. internal static string ApiMetadataPath => Path.Combine(Constants.InternalFilesPath, "metadata.json"); -- cgit