diff --git a/LabApi/Loader/PluginLoader.cs b/LabApi/Loader/PluginLoader.cs index 2975529..04a75dd 100644 --- a/LabApi/Loader/PluginLoader.cs +++ b/LabApi/Loader/PluginLoader.cs @@ -107,7 +107,7 @@ public static void LoadAllDependencies() Directory.CreateDirectory(fullPath); - LoadDependencies(new DirectoryInfo(fullPath).GetFiles(DllSearchPattern)); + LoadDependencies(new DirectoryInfo(fullPath).GetFiles(DllSearchPattern, SearchOption.AllDirectories)); } }