From 2279c24d111b60b7c0233a90562a54c815af7134 Mon Sep 17 00:00:00 2001 From: Ishaan Bhardwaj Date: Sun, 8 Nov 2020 23:23:26 -0500 Subject: [PATCH] Closed an if in the previous fix --- tetris/modes/phantom_mania2.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tetris/modes/phantom_mania2.lua b/tetris/modes/phantom_mania2.lua index 2d060d5..40302e7 100644 --- a/tetris/modes/phantom_mania2.lua +++ b/tetris/modes/phantom_mania2.lua @@ -168,7 +168,7 @@ function PhantomMania2Game:onLineClear(cleared_row_count) self:advanceBottomRow(-cleared_row_count) else if self.big_mode then self.roll_points = self.roll_points + big_roll_points[cleared_row_count / 2] - else self.roll_points = self.roll_points + torikan_roll_points[cleared_row_count] + else self.roll_points = self.roll_points + torikan_roll_points[cleared_row_count] end if self.roll_points >= 100 then self.roll_points = self.roll_points - 100 self.grade = self.grade + 1