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