From 3b026ce2049e7ab9d58a30535653397d459e186b Mon Sep 17 00:00:00 2001 From: MrZ626 <1046101471@qq.com> Date: Mon, 9 Aug 2021 22:48:08 +0800 Subject: [PATCH] =?UTF-8?q?=E9=99=8D=E4=BD=8E=E6=97=A0=E5=B0=BDpc=E7=9A=84?= =?UTF-8?q?S=E7=BA=BF=E8=87=B350=EF=BC=8C=E5=90=8C=E6=97=B6=E5=8A=A0?= =?UTF-8?q?=E5=BF=AB=E9=80=9F=E5=BA=A6=E6=8F=90=E5=8D=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- parts/modes/pc_inf.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/parts/modes/pc_inf.lua b/parts/modes/pc_inf.lua index 46ee7754..4ed704bd 100644 --- a/parts/modes/pc_inf.lua +++ b/parts/modes/pc_inf.lua @@ -6,7 +6,7 @@ return{ dropPiece=function(P) if P.lastPiece.pc then P.gameEnv.heightLimit=4 - if P.stat.pc%10==0 then + if P.stat.pc%5==0 then P.gameEnv.drop=math.max(P.gameEnv.drop-1,1) end else @@ -32,9 +32,9 @@ return{ getRank=function(P) local L=P.stat.pc return - L>=100 and 5 or - L>=70 and 4 or - L>=40 and 3 or + L>=50 and 5 or + L>=40 and 4 or + L>=30 and 3 or L>=20 and 2 or L>=10 and 1 or L>=5 and 0