From 0b7032ce500a6e4a1b811caf5459854c0dabf792 Mon Sep 17 00:00:00 2001 From: MrZ626 <1046101471@qq.com> Date: Mon, 21 Sep 2020 14:33:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B4=E7=90=86=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- parts/player.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/parts/player.lua b/parts/player.lua index 01b80781..f98cbbd3 100644 --- a/parts/player.lua +++ b/parts/player.lua @@ -475,15 +475,12 @@ local function Pupdate_dead(P,dt) end if P.falling>=0 then P.falling=P.falling-1 - if P.falling>=0 then - goto stop - else + if P.falling<0 then local L=#P.clearingRow if P.human and P.gameEnv.fall>0 and #P.field+L>P.clearingRow[L]then SFX.play("fall")end P.clearingRow={} end end - ::stop:: if P.b2b1>0 then P.b2b1=max(0,P.b2b1*.92-1)end updateLine(P,dt) updateFXs(P,dt)