diff --git a/Zframework/widgetList.lua b/Zframework/widgetList.lua index 638be35f..d8eba7af 100644 --- a/Zframework/widgetList.lua +++ b/Zframework/widgetList.lua @@ -69,8 +69,8 @@ local virtualkeySet={ {16,970, 50,30},--down10 {17,1030, 50,30},--dropLeft {18,1090, 50,30},--dropRight - {19,1150, 50,30},--addLeft - {20,1210, 50,30},--addRight + {19,1150, 50,30},--zangiLeft + {20,1210, 50,30},--zangiRight },--PC key feedback(top&in a row) } diff --git a/parts/player.lua b/parts/player.lua index acdc2d67..efd61fab 100644 --- a/parts/player.lua +++ b/parts/player.lua @@ -2403,14 +2403,14 @@ function player.act.dropRight(P) P.act.insRight(P) P.act.hardDrop(P) end -function player.act.addLeft(P) +function player.act.zangiLeft(P) if P.gameEnv.nofly or not P.cur then return end P.act.insLeft(P) P.act.insDown(P) P.act.insRight(P) P.act.hardDrop(P) end -function player.act.addRight(P) +function player.act.zangiRight(P) if P.gameEnv.nofly or not P.cur then return end P.act.insRight(P) P.act.insDown(P) @@ -2424,7 +2424,7 @@ T={ A.rot180 ,A.hardDrop, A.softDrop, A.hold, A.func ,A.restart, A.insLeft, A.insRight, A.insDown ,A.down1, A.down4, A.down10, - A.dropLeft ,A.dropRight, A.addLeft, A.addRight + A.dropLeft ,A.dropRight, A.zangiLeft,A.zangiRight }for i=1,20 do A[i]=T[i]end;A,T=nil ----------------------------------------------------