From c6536af73d8bb7839cc10eceea848ecf242f54e8 Mon Sep 17 00:00:00 2001 From: uye <99072975+ABA2396@users.noreply.github.com> Date: Wed, 11 Jun 2025 01:03:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8D=88=E5=A4=9C=200=20=E7=82=B9?= =?UTF-8?q?=E6=B2=A1=E7=AE=97=200=20=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MaaWpfGui/Main/Bootstrapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MaaWpfGui/Main/Bootstrapper.cs b/src/MaaWpfGui/Main/Bootstrapper.cs index 4e15b58d8c..369f5f6b4e 100644 --- a/src/MaaWpfGui/Main/Bootstrapper.cs +++ b/src/MaaWpfGui/Main/Bootstrapper.cs @@ -339,7 +339,7 @@ namespace MaaWpfGui.Main var now = DateTime.Now; // 0~4 点启动 - if (now.Hour is > 0 and < 4) + if (now.Hour is >= 0 and < 4) { AchievementTrackerHelper.Instance.Unlock(AchievementIds.MidnightLaunch); }