mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix: null ref in PluginStatsWindow
This commit is contained in:
parent
d83aabafe2
commit
0c5db3d0e6
1 changed files with 5 additions and 5 deletions
|
|
@ -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.");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue