From b5c689c0ba32a7581de9955d22d021dfdbd72c9b Mon Sep 17 00:00:00 2001 From: marzent Date: Thu, 18 Jan 2024 11:27:37 +0100 Subject: [PATCH] fix bad a0f4baf merge --- Dalamud/Plugin/Internal/PluginManager.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Dalamud/Plugin/Internal/PluginManager.cs b/Dalamud/Plugin/Internal/PluginManager.cs index e88dc3f8e..a3a4fb7e4 100644 --- a/Dalamud/Plugin/Internal/PluginManager.cs +++ b/Dalamud/Plugin/Internal/PluginManager.cs @@ -147,6 +147,14 @@ internal partial class PluginManager : IDisposable, IServiceType // NET8 CHORE //this.ApplyPatches(); + + registerStartupBlocker( + Task.Run(this.LoadAndStartLoadSyncPlugins), + "Waiting for plugins that asked to be loaded before the game."); + + registerUnloadAfter( + ResolvePossiblePluginDependencyServices(), + "See the attached comment for the called function."); } ///