diff --git a/Il2CppInspector.Common/Plugins/Internal/PluginManager.cs b/Il2CppInspector.Common/Plugins/Internal/PluginManager.cs index 58c9dea2..e146c359 100644 --- a/Il2CppInspector.Common/Plugins/Internal/PluginManager.cs +++ b/Il2CppInspector.Common/Plugins/Internal/PluginManager.cs @@ -194,11 +194,15 @@ public static void Reload(string pluginPath = null, bool reset = true, bool core 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