From 9224f271b1c0185292b7819f0bcf4ef0f1686391 Mon Sep 17 00:00:00 2001 From: Ishaan Bhardwaj Date: Mon, 2 Nov 2020 16:20:22 -0500 Subject: [PATCH] Hotfix for last --- tetris/modes/marathon_a1.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tetris/modes/marathon_a1.lua b/tetris/modes/marathon_a1.lua index de89917..ac559ef 100644 --- a/tetris/modes/marathon_a1.lua +++ b/tetris/modes/marathon_a1.lua @@ -139,7 +139,7 @@ function MarathonA1Game:onLineClear(cleared_row_count) local new_level = math.min(self.level + cleared_row_count, 999) if new_level == 999 then self.clear = true - else + end self.level = new_level end end