From 2ddb800882f193194a2837298774fb9b9d25be8f Mon Sep 17 00:00:00 2001 From: Kirby703 <14858059+Kirby703@users.noreply.github.com> Date: Tue, 15 Feb 2022 21:22:11 -0500 Subject: [PATCH] added points for surviving the roll how'd we forget such an important feature of this mode --- tetris/modes/phantom_mania_nx.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tetris/modes/phantom_mania_nx.lua b/tetris/modes/phantom_mania_nx.lua index 060d1f8..cbb2045 100644 --- a/tetris/modes/phantom_mania_nx.lua +++ b/tetris/modes/phantom_mania_nx.lua @@ -118,6 +118,11 @@ function PhantomManiaNXGame:advanceOneFrame() end return false elseif self.roll_frames > 3238 then + if self:qualifiesForGMRoll() then + self.roll_points = self.roll_points + 160 + else + self.roll_points = self.roll_points + 50 + end switchBGM(nil) self.completed = true end