fix: TaskTracker needs to run after framework or it explodes

This commit is contained in:
Raymond 2021-10-17 19:49:55 -04:00
parent 339009a2fc
commit 31ebf06d53

View file

@ -104,11 +104,6 @@ namespace Dalamud
Service<ServiceContainer>.Set();
#if DEBUG
Service<TaskTracker>.Set();
Log.Information("[T1] TaskTracker OK!");
#endif
// Initialize the process information.
Service<SigScanner>.Set(new SigScanner(true));
Service<HookManager>.Set();
@ -121,6 +116,10 @@ namespace Dalamud
var framework = Service<Framework>.Set();
Log.Information("[T1] Framework OK!");
#if DEBUG
Service<TaskTracker>.Set();
Log.Information("[T1] TaskTracker OK!");
#endif
Service<GameNetwork>.Set();
Service<GameGui>.Set();