Patch standard.lua to prevent midair lock

pull/81/head
Aymir Dmitrievich Danilov 2023-10-19 14:33:25 +07:00 committed by GitHub
parent 7c3cf0b1bd
commit 8062f6e3fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -93,6 +93,8 @@ function SRS:onPieceMove(piece, grid)
if piece.manipulations >= SRS.MANIPULATIONS_MAX then
piece.locked = true
end
else
piece.locked = false
end
end