Browse Source

Made BaseUnityPlugin.Config public to make access by other plugins easier

ManlyMarco 4 years ago
parent
commit
d2bab3824e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      BepInEx/Contract/BaseUnityPlugin.cs

+ 1 - 1
BepInEx/Contract/BaseUnityPlugin.cs

@@ -23,7 +23,7 @@ namespace BepInEx
 		/// Default config file tied to this plugin. The config file will not be created until 
 		/// any settings are added and changed, or <see cref="ConfigFile.Save"/> is called.
 		/// </summary>
-		protected ConfigFile Config { get; }
+		public ConfigFile Config { get; }
 
 		/// <summary>
 		/// Create a new instance of a plugin and all of its tied in objects.