From 7ab989e422caeca8f5b347e4a32fbfc133d2c3cd Mon Sep 17 00:00:00 2001 From: Tobey Blaber Date: Fri, 22 Dec 2023 05:34:19 +0000 Subject: [PATCH] Add sensible defaults for `Patching.ExcludedAssemblies` config value --- Shared/BepinexConfigData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/BepinexConfigData.cs b/Shared/BepinexConfigData.cs index 149f960..dc856b6 100644 --- a/Shared/BepinexConfigData.cs +++ b/Shared/BepinexConfigData.cs @@ -42,7 +42,7 @@ public static class ExcludedAssemblies { public static readonly string Name = "Excluded assemblies"; public static readonly string Description = $"Comma-separated list of assembly file names to exclude in the search for references to Unity Audio. Ignored if `{PatchType.Name}` is not set to `{UnityAudio.PatchType.Automatic}`."; - public static readonly string DefaultValue = string.Empty; + public static readonly string DefaultValue = "Assembly-CSharp, Assembly-CSharp-firstpass, Assembly-UnityScript, Assembly-UnityScript-firstpass"; public static readonly object[] Tags = new[] { new ConfigurationManagerAttributes() { IsAdvanced = true },