From d2b171427a5f1f7ab4c74d59b07b95b2d2fb62ed Mon Sep 17 00:00:00 2001 From: MrZ626 <1046101471@qq.com> Date: Fri, 4 Jun 2021 18:22:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E9=AB=98=E6=97=A0=E6=91=A9=E6=93=A6?= =?UTF-8?q?=E6=A8=A1=E5=BC=8F=E8=AF=84=E7=BA=A7=E8=A6=81=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- parts/modes/sprintSmooth.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/parts/modes/sprintSmooth.lua b/parts/modes/sprintSmooth.lua index 2cc29c2b..68a578a1 100644 --- a/parts/modes/sprintSmooth.lua +++ b/parts/modes/sprintSmooth.lua @@ -21,10 +21,10 @@ return{ if P.stat.row<40 then return end local T=P.stat.time return - T<=40 and 5 or - T<=50 and 4 or - T<=70 and 3 or - T<=100 and 2 or + T<=30 and 5 or + T<=45 and 4 or + T<=60 and 3 or + T<=90 and 2 or T<=150 and 1 or 0 end,