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