Browse Source

Implement primary resolution loop

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

+ 7
- 0
IPA.Loader/Loader/PluginLoader.cs View File

@ -896,6 +896,13 @@ namespace IPA.Loader
}
}
}
// run TryResolveId over every plugin, which recursively calculates load order
foreach (var plugin in pluginsToProcess)
{
_ = TryResolveId(plugin.Id, out _, out _, out _);
}
// by this point, outputOrder contains the full load order
}
DisabledConfig.Instance.Changed();


Loading…
Cancel
Save