From 1c7fc3da46b053580e7bd1268a8f79eaed9d07ae Mon Sep 17 00:00:00 2001 From: goat Date: Fri, 31 Mar 2023 21:55:54 +0200 Subject: [PATCH] also allow 31st of march --- Dalamud/Fools/FoolsManager.cs | 2 +- Dalamud/Fools/FoolsWindow.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dalamud/Fools/FoolsManager.cs b/Dalamud/Fools/FoolsManager.cs index 6aac3b349..0765868f3 100644 --- a/Dalamud/Fools/FoolsManager.cs +++ b/Dalamud/Fools/FoolsManager.cs @@ -170,7 +170,7 @@ internal class FoolsManager : IDisposable, IServiceType public bool CheckIsApplicableAprilFoolsTime() { var now = DateTime.Now; - return now is { Year: 2023, Month: 4, Day: 1 }; + return now is { Year: 2023, Month: 4, Day: 1 } or { Year: 2023, Month: 3, Day: 31 }; } public void ActivatePlugin(string plugin) diff --git a/Dalamud/Fools/FoolsWindow.cs b/Dalamud/Fools/FoolsWindow.cs index 93663f67d..91aef5da0 100644 --- a/Dalamud/Fools/FoolsWindow.cs +++ b/Dalamud/Fools/FoolsWindow.cs @@ -40,6 +40,7 @@ plugins with endless possibilities. Open the ""Alternate Reality"" tab in the plugin installer to see what's available. We hope you enjoy this new version of Dalamud, and we look forward to your feedback. +Be quick - it's only available for one day! ".Trim()); if (ImGui.Button("Open the plugin installer"))