|
@@ -39,15 +39,13 @@ namespace BepInEx.Bootstrap
|
|
|
/// <summary>
|
|
|
/// Initializes BepInEx to be able to start the chainloader.
|
|
|
/// </summary>
|
|
|
- public static void Initialize(string containerExePath, string managedPath = null, bool startConsole = true)
|
|
|
+ public static void Initialize(string containerExePath, bool startConsole = true)
|
|
|
{
|
|
|
if (_initialized)
|
|
|
return;
|
|
|
|
|
|
//Set vitals
|
|
|
- Paths.SetExecutablePath(containerExePath);
|
|
|
- Paths.SetManagedPath(managedPath);
|
|
|
- Paths.SetPluginPath(ConfigPluginsDirectory.Value);
|
|
|
+ Paths.SetExecutablePath(containerExePath, pluginPath: ConfigPluginsDirectory.Value);
|
|
|
|
|
|
//Start logging
|
|
|
if (ConsoleWindow.ConfigConsoleEnabled.Value && startConsole)
|