Allow usage without the plugins folder
This commit is contained in:
@@ -194,11 +194,15 @@ namespace Il2CppInspector
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
// Don't allow the user to start the application if there's no plugins folder
|
// 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)) {
|
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. "
|
"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. "
|
+ "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.");
|
+ "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
|
// Get every DLL
|
||||||
|
|||||||
Reference in New Issue
Block a user