mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
fix: correct namespaces to allow plugins to load correctly
This commit is contained in:
parent
8255328be1
commit
3c5fe88e5a
34 changed files with 20 additions and 38 deletions
|
|
@ -59,7 +59,7 @@ namespace PepperDash.Essentials
|
|||
|
||||
Debug.LogMessage(LogEventLevel.Verbose, "Found {0} Assemblies", assemblyFiles.Length);
|
||||
|
||||
foreach (var fi in assemblyFiles)
|
||||
foreach (var fi in assemblyFiles.Where(fi => fi.Name.Contains("Essentials") || fi.Name.Contains("PepperDash")))
|
||||
{
|
||||
string version = string.Empty;
|
||||
Assembly assembly = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue