feat: 秘境时间设置为向上取整

This commit is contained in:
LyMysterious
2025-10-05 12:36:10 +08:00
parent 5f54db7129
commit b4f59b943c
+1 -1
View File
@@ -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);
}
}