Fixed O failing to rotate in CRS

pull/21/head
Ishaan Bhardwaj 2021-06-02 12:10:02 -04:00
parent 50466c5902
commit 6c201596b0
1 changed files with 4 additions and 1 deletions

View File

@ -375,7 +375,10 @@ end
function CRS:attemptWallkicks(piece, new_piece, rot_dir, grid)
if piece.shape == "O" then return end
if piece.shape == "O" then
self:onPieceRotate(piece, grid)
return
end
local kicks = CRS.wallkicks[piece.shape][piece:isDropBlocked(grid)][piece.rotation][new_piece.rotation]