mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 20:54:16 +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!");
|
Log.Information("[T3] START!");
|
||||||
|
|
||||||
this.DalamudUi = new DalamudInterface(this);
|
|
||||||
this.InterfaceManager.OnDraw += this.DalamudUi.Draw;
|
|
||||||
|
|
||||||
Log.Information("[T3] DUI OK!");
|
|
||||||
|
|
||||||
this.PluginRepository =
|
this.PluginRepository =
|
||||||
new PluginRepository(this, this.StartInfo.PluginDirectory, this.StartInfo.GameVersion);
|
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);
|
Troubleshooting.LogTroubleshooting(this, this.InterfaceManager != null);
|
||||||
|
|
||||||
Log.Information("Dalamud is ready.");
|
Log.Information("Dalamud is ready.");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue