Parcourir la source

Merge branch 'overhaul-chainloder-cecil' of https://github.com/BepInEx/BepInEx into overhaul-chainloder-cecil

ghorsington il y a 5 ans
Parent
commit
c3b84c8139
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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;