Browse Source

Remove LoadsAfter tracking requirement of not being ignored

pull/72/head
Anairkoen Schno 3 years ago
parent
commit
633c57e161
Signed by: DaNike GPG Key ID: BEFB74D5F3FC4387
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      IPA.Loader/Loader/PluginLoader.cs

+ 1
- 1
IPA.Loader/Loader/PluginLoader.cs View File

@ -991,7 +991,7 @@ namespace IPA.Loader
// then handle loadafters
foreach (var id in plugin.Manifest.LoadAfter)
{
if (TryResolveId(id, out var meta, out var depDisabled, out var depIgnored) && !depIgnored)
if (TryResolveId(id, out var meta, out var depDisabled, out var depIgnored))
{
// we only want to make sure to loadafter if its not ignored
// if its disabled, we still wanna track it where possible


Loading…
Cancel
Save