修复hold重复方块对极简的惩罚

This commit is contained in:
MrZ626
2020-10-23 20:23:16 +08:00
parent c36a8e92da
commit 33b0a4095c

View File

@@ -1911,7 +1911,9 @@ function player.hold(P,ifpre)
if not(H or C)then return end
--Finesse check
if not(H and C and H.id==C.id and H.name==C.name or P.ctrlCount>1)then
if H and C and H.id==C.id and H.name==C.name then
P.ctrlCount=P.ctrlCount+1
elseif P.ctrlCount<=1 then
P.ctrlCount=0
end