Skip to content

Commit

Permalink
Allow usage without the plugins folder
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeFZ committed Jun 24, 2024
1 parent 396c222 commit 98edac1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Il2CppInspector.Common/Plugins/Internal/PluginManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 98edac1

Please sign in to comment.