From 98edac1aea93eb92ee63b1c788ded46bb69bf2e6 Mon Sep 17 00:00:00 2001 From: LukeFZ <17146677+LukeFZ@users.noreply.github.com> Date: Mon, 24 Jun 2024 18:40:19 +0200 Subject: [PATCH] Allow usage without the plugins folder --- Il2CppInspector.Common/Plugins/Internal/PluginManager.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Il2CppInspector.Common/Plugins/Internal/PluginManager.cs b/Il2CppInspector.Common/Plugins/Internal/PluginManager.cs index 58c9dea..e146c35 100644 --- a/Il2CppInspector.Common/Plugins/Internal/PluginManager.cs +++ b/Il2CppInspector.Common/Plugins/Internal/PluginManager.cs @@ -194,11 +194,15 @@ namespace Il2CppInspector return; // Don't allow the user to start the application if there's no plugins folder + // REDUX: We allow people to not use plugins since they might be incompatible with the installation if (!Directory.Exists(pluginFolder)) { - throw new DirectoryNotFoundException( + /*throw new DirectoryNotFoundException( "Plugins folder not found. Please ensure you have installed the latest set of plugins before starting. " + "The plugins folder should be placed in the same directory as Il2CppInspector. " + "Use get-plugins.ps1 or get-plugins.sh to update your plugins. For more information, see the Il2CppInspector README.md file."); + */ + + return; } // Get every DLL