mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-27 19:09:18 +01:00
also allow 31st of march
This commit is contained in:
parent
9036f43799
commit
1c7fc3da46
2 changed files with 2 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue