feat: april fools 2022

This commit is contained in:
goaaats 2022-04-01 10:53:56 +02:00
parent e151cefb64
commit 57bd6bc1e3
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
4 changed files with 342 additions and 0 deletions

View file

@ -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)