From cd14a0dd8ea988b446f651e5f6835e27ba4e03e1 Mon Sep 17 00:00:00 2001 From: Lenheart <947330670@qq.com> Date: Tue, 14 Oct 2025 17:12:59 +0800 Subject: [PATCH] 111 --- Project/CumulativeReward/CumulativeReward.nut | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project/CumulativeReward/CumulativeReward.nut b/Project/CumulativeReward/CumulativeReward.nut index df9dde3..e1c5d64 100644 --- a/Project/CumulativeReward/CumulativeReward.nut +++ b/Project/CumulativeReward/CumulativeReward.nut @@ -174,7 +174,7 @@ class CumulativeRewardC extends LenheartNewUI_Windows { local Second = ((NextStageTime - (CurrentStageTime + ((Clock() - RecvPackTime)))) / 1000); local SecondStr = Second % 60; local Minute = (Second - SecondStr) / 60; - local Str = "距离下一阶段还有 " + (Minute> 0 ? Minute.tostring() : "") + SecondStr.tostring() + " 秒"; + local Str = "距离下一阶段还有 " + (Minute> 0 ? Minute.tostring() + " 分 " : "") + SecondStr.tostring() + " 秒"; L_sq_DrawCode(Str, X + 6, Y + 61, sq_RGBA(150, 150, 150, 255), 1, 1); } }