mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-31 21:03:43 +01:00
feat: april fools 2022
This commit is contained in:
parent
e151cefb64
commit
57bd6bc1e3
4 changed files with 342 additions and 0 deletions
|
|
@ -53,6 +53,8 @@ namespace Dalamud
|
|||
|
||||
#endregion
|
||||
|
||||
private Fools22? fools22;
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="Dalamud"/> class.
|
||||
/// </summary>
|
||||
|
|
@ -270,6 +272,15 @@ namespace Dalamud
|
|||
|
||||
Troubleshooting.LogTroubleshooting();
|
||||
|
||||
try
|
||||
{
|
||||
this.fools22 = new Fools22();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Log.Error(ex, "Fools22 load failed.");
|
||||
}
|
||||
|
||||
Log.Information("Dalamud is ready.");
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
|
@ -360,6 +371,8 @@ namespace Dalamud
|
|||
|
||||
this.processMonoHook?.Dispose();
|
||||
|
||||
this.fools22?.Dispose();
|
||||
|
||||
Log.Debug("Dalamud::Dispose() OK!");
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue