From 633c57e161cdecd3567f299d07b1d2870a6bd86f Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Tue, 1 Jun 2021 01:41:11 -0500 Subject: [PATCH] Remove LoadsAfter tracking requirement of not being ignored --- IPA.Loader/Loader/PluginLoader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPA.Loader/Loader/PluginLoader.cs b/IPA.Loader/Loader/PluginLoader.cs index 64739d8b..354bcf13 100644 --- a/IPA.Loader/Loader/PluginLoader.cs +++ b/IPA.Loader/Loader/PluginLoader.cs @@ -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