mirror of
https://github.com/SashLilac/cambridge.git
synced 2024-11-22 11:49:02 -06:00
Fixed a 0 ARR gravity bug
This commit is contained in:
parent
449ca16bc4
commit
3766149cb7
@ -123,6 +123,7 @@ function Ruleset:movePiece(piece, grid, move, instant)
|
||||
local was_drop_blocked = piece:isDropBlocked(grid)
|
||||
local offset = ({x=0, y=0})
|
||||
local moves = 0
|
||||
local y = piece.position.y
|
||||
if move == "left" then
|
||||
offset.x = -1
|
||||
moves = 1
|
||||
@ -151,6 +152,9 @@ function Ruleset:movePiece(piece, grid, move, instant)
|
||||
if not was_drop_blocked and piece:isDropBlocked(grid) then
|
||||
playSE("bottom")
|
||||
end
|
||||
if piece.position.y ~= y then
|
||||
self:onPieceDrop(piece, grid)
|
||||
end
|
||||
end
|
||||
|
||||
function Ruleset:dropPiece(
|
||||
|
Loading…
Reference in New Issue
Block a user