From 4420ad3d62c09aae79ef6d04da91a7d3be78eb40 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Sat, 12 Jan 2019 00:05:56 +0100 Subject: [PATCH] Support nested plugins --- ArchiSteamFarm/Plugins/Core.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Plugins/Core.cs b/ArchiSteamFarm/Plugins/Core.cs index c8e6dfe22..2654851c7 100644 --- a/ArchiSteamFarm/Plugins/Core.cs +++ b/ArchiSteamFarm/Plugins/Core.cs @@ -99,7 +99,7 @@ namespace ArchiSteamFarm.Plugins { HashSet assemblies = new HashSet(); try { - foreach (string assemblyPath in Directory.EnumerateFiles(pluginsPath, "*.dll")) { + foreach (string assemblyPath in Directory.EnumerateFiles(pluginsPath, "*.dll", SearchOption.AllDirectories)) { Assembly assembly; try {