Compare commits

..

No commits in common. "a063f10d332c852508e97c23088b9023847b43dd" and "18e0e02c767dedc0729dc28eca1c5eb878c3c78d" have entirely different histories.

View File

@ -530,8 +530,6 @@ function GameMode:onEnterOrHold(inputs, ruleset)
if not self.grid:canPlacePiece(self.piece) then
self.game_over = true
return
elseif self.piece:isDropBlocked(self.grid) then
playSE("bottom")
end
ruleset:dropPiece(
inputs, self.piece, self.grid, self:getGravity(),
@ -580,6 +578,10 @@ function GameMode:initializeNextPiece(
self.piece_soft_locked = false
self.buffer_hard_drop = false
self.buffer_soft_drop = false
if self.piece:isDropBlocked(self.grid) and
self.grid:canPlacePiece(self.piece) then
playSE("bottom")
end
if generate_next_piece == nil then
table.remove(self.next_queue, 1)
table.insert(self.next_queue, self:getNextPiece(ruleset))