From b4f59b943c7b0aecea9b6b1b4658a0160b814855 Mon Sep 17 00:00:00 2001 From: LyMysterious Date: Sun, 5 Oct 2025 12:36:10 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=A7=98=E5=A2=83=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E4=B8=BA=E5=90=91=E4=B8=8A=E5=8F=96=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- XiaoXiaoRoBot/Cmd/MiJingNotify.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XiaoXiaoRoBot/Cmd/MiJingNotify.cs b/XiaoXiaoRoBot/Cmd/MiJingNotify.cs index bcd505c..a4c588f 100644 --- a/XiaoXiaoRoBot/Cmd/MiJingNotify.cs +++ b/XiaoXiaoRoBot/Cmd/MiJingNotify.cs @@ -72,7 +72,7 @@ namespace RoBot.Start.Cmd { if (double.TryParse(match.Groups[1].Value, NumberStyles.Float, CultureInfo.InvariantCulture, out double val)) { - return (int)Math.Round(val); + return (int)Math.Ceiling(val); } }