From 95bac801b28724a91b764c01e0952aac2c5c3fc4 Mon Sep 17 00:00:00 2001 From: goaaats Date: Tue, 1 Apr 2025 23:16:28 +0200 Subject: [PATCH] Remove 2025 april fools --- .../PluginInstaller/PluginInstallerWindow.cs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs index 1085df4cf..dfd37431c 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs @@ -140,13 +140,6 @@ internal class PluginInstallerWindow : Window, IDisposable private string? staleDalamudNewVersion = null; - private int? aprilFoolsLineIdx = null; - private string[] aprilFoolsLines = - [ - "We sincerely apologize for this year's April Fool's joke.\nWe hope you enjoyed it, and we promise to do better next year.", - "Please do not feed the ducks.\nThey are not ducks.", - ]; - /// /// Initializes a new instance of the class. /// @@ -1620,14 +1613,6 @@ internal class PluginInstallerWindow : Window, IDisposable ImGuiHelpers.ScaledDummy(10); } - if (DateTime.Now is { Day: 1, Month: 4 }) - { - ImGuiHelpers.ScaledDummy(10); - this.aprilFoolsLineIdx ??= new Random().Next(0, this.aprilFoolsLines.Length); - DrawLinesCentered(this.aprilFoolsLines[this.aprilFoolsLineIdx.Value]); - ImGuiHelpers.ScaledDummy(10); - } - if (this.staleDalamudNewVersion != null) { DrawWarningIcon();