Moved the LCA draw call to after the piece draw call

pull/38/head
Ishaan Bhardwaj 2021-10-02 20:14:03 -04:00
parent 625d4f80af
commit a5fed31f4e
1 changed files with 3 additions and 3 deletions

View File

@ -920,13 +920,13 @@ function GameMode:draw(paused)
self:drawFrame()
self:drawGrid()
self:drawPiece()
if self:canDrawLCA() then
self:drawLineClearAnimation()
end
self:drawNextQueue(self.ruleset)
self:drawScoringInfo()
self:drawReadyGo()
self:drawCustom()
if self:canDrawLCA() then
self:drawLineClearAnimation()
end
love.graphics.setColor(1, 1, 1, 1)
love.graphics.setFont(font_3x5_2)