Explorar o código

Make ToPluginInfo public (#81)

Keelhauled %!s(int64=5) %!d(string=hai) anos
pai
achega
81b2127e7a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      BepInEx/Bootstrap/Chainloader.cs

+ 1 - 1
BepInEx/Bootstrap/Chainloader.cs

@@ -87,7 +87,7 @@ namespace BepInEx.Bootstrap
 
 		private static Regex allowedGuidRegex { get; } = new Regex(@"^[a-zA-Z0-9\._]+$");
 
-        private static PluginInfo ToPluginInfo(TypeDefinition type)
+        public static PluginInfo ToPluginInfo(TypeDefinition type)
 		{
 			if (type.IsInterface || type.IsAbstract || !type.IsSubtypeOf(typeof(BaseUnityPlugin)))
 				return null;