From f022c6c4b74f446925dcc7b3187d8584d718e669 Mon Sep 17 00:00:00 2001 From: Ishaan Bhardwaj Date: Mon, 1 Feb 2021 15:58:30 -0500 Subject: [PATCH] Sakura no longer draws game over effect on completion --- tetris/modes/sakura.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tetris/modes/sakura.lua b/tetris/modes/sakura.lua index 6dfbf0e..301e13c 100644 --- a/tetris/modes/sakura.lua +++ b/tetris/modes/sakura.lua @@ -437,6 +437,8 @@ function SakuraGame:advanceOneFrame(inputs, ruleset) return true end +function GameMode:onGameComplete() end + local function colourXRay(game, block, x, y, age) local r, g, b, a = .5,.5,.5 if ((game.stage_frames/2 - x) % 30 < 1)