From aafd55206c1e2c4950dd4962628e857b96321dd2 Mon Sep 17 00:00:00 2001 From: MrZ_26 <1046101471@qq.com> Date: Wed, 10 Jan 2024 11:54:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=BB=E4=BA=A1=E5=BB=B6=E8=BF=9F?= =?UTF-8?q?=E6=9C=9F=E9=97=B4=E6=9D=BE=E5=BC=80=E7=A7=BB=E5=8A=A8=E6=96=B9?= =?UTF-8?q?=E5=90=91=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/game/mechanicLib/mino/actions.lua | 2 +- assets/game/mechanicLib/puyo/actions.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/game/mechanicLib/mino/actions.lua b/assets/game/mechanicLib/mino/actions.lua index 89697f49..f42aa12b 100644 --- a/assets/game/mechanicLib/mino/actions.lua +++ b/assets/game/mechanicLib/mino/actions.lua @@ -73,7 +73,7 @@ local function releaseMove(P,dir) P.moveDir=false P.moveCharge=0 if P.keyBuffer.move==dir then P.keyBuffer.move=false end - if P.hand and P.deathTimer then P[dir=='L' and 'moveLeft' or 'moveRight'](P) end + if P.hand and P.deathTimer then P[dir=='L' and 'moveRight' or 'moveLeft'](P) end end end diff --git a/assets/game/mechanicLib/puyo/actions.lua b/assets/game/mechanicLib/puyo/actions.lua index 658851ff..aef89441 100644 --- a/assets/game/mechanicLib/puyo/actions.lua +++ b/assets/game/mechanicLib/puyo/actions.lua @@ -73,7 +73,7 @@ local function releaseMove(P,dir) P.moveDir=false P.moveCharge=0 if P.keyBuffer.move==dir then P.keyBuffer.move=false end - if P.hand and P.deathTimer then P[dir=='L' and 'moveLeft' or 'moveRight'](P) end + if P.hand and P.deathTimer then P[dir=='L' and 'moveRight' or 'moveLeft'](P) end end end