dropToBottom no longer resets lock delay

it's already handled by the rulesets anyhow
pull/16/head
Ishaan Bhardwaj 2021-02-11 21:20:23 -05:00
parent af02cd3467
commit 15354ce004
1 changed files with 1 additions and 2 deletions

View File

@ -104,9 +104,8 @@ function Piece:dropToBottom(grid)
self:dropSquares(math.huge, grid)
self.gravity = 0
if self.position.y > piece_y then
-- if it got dropped any, also reset lock delay
if self.ghost == false then playSE("bottom") end
self.lock_delay = 0
-- self.lock_delay = 0
end
return self
end