fix: 午夜 0 点没算 0 点

This commit is contained in:
uye
2025-06-11 01:03:44 +08:00
parent a903486c71
commit c6536af73d

View File

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