ACE-SRS has correct number of resets

pull/13/head
Ishaan Bhardwaj 2020-12-04 11:22:32 -05:00
parent 3d5b33f41a
commit aea115d953
1 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ function SRS:onPieceMove(piece, grid)
piece.lock_delay = 0 -- move reset
if piece:isDropBlocked(grid) then
piece.manipulations = piece.manipulations + 1
if piece.manipulations >= 127 then
if piece.manipulations >= 128 then
piece.locked = true
end
end
@ -178,7 +178,7 @@ function SRS:onPieceRotate(piece, grid)
piece.lock_delay = 0 -- rotate reset
if piece:isDropBlocked(grid) then
piece.manipulations = piece.manipulations + 1
if piece.manipulations >= 127 then
if piece.manipulations >= 128 then
piece.locked = true
end
end