diff --git a/Dalamud/Dalamud.cs b/Dalamud/Dalamud.cs index 0a0ecb7ba..9e7ceff3c 100644 --- a/Dalamud/Dalamud.cs +++ b/Dalamud/Dalamud.cs @@ -308,11 +308,6 @@ namespace Dalamud { Log.Information("[T3] START!"); - this.DalamudUi = new DalamudInterface(this); - this.InterfaceManager.OnDraw += this.DalamudUi.Draw; - - Log.Information("[T3] DUI OK!"); - this.PluginRepository = new PluginRepository(this, this.StartInfo.PluginDirectory, this.StartInfo.GameVersion); @@ -340,6 +335,11 @@ namespace Dalamud } } + this.DalamudUi = new DalamudInterface(this); + this.InterfaceManager.OnDraw += this.DalamudUi.Draw; + + Log.Information("[T3] DUI OK!"); + Troubleshooting.LogTroubleshooting(this, this.InterfaceManager != null); Log.Information("Dalamud is ready.");