mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix: raw plugins not loading without config file
This commit is contained in:
parent
411cf3ee9c
commit
6bea0ab38a
1 changed files with 1 additions and 1 deletions
|
|
@ -149,7 +149,7 @@ namespace Dalamud.Plugin
|
|||
return prio2.CompareTo(prio1);
|
||||
});
|
||||
|
||||
this.deferredPlugins = pluginDefs.Where(x => x.definition?.LoadPriority <= 0);
|
||||
this.deferredPlugins = pluginDefs.Where(x => x.definition == null || x.definition.LoadPriority <= 0);
|
||||
|
||||
// Pass preloaded definitions for "synchronous load" plugins to LoadPluginFromAssembly, because we already loaded them anyways
|
||||
foreach (var (dllFile, definition, isRaw) in pluginDefs.Where(x => x.definition?.LoadPriority > 0))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue