From 8f70ba187ce4696face38d1eaaaee0e701796b02 Mon Sep 17 00:00:00 2001 From: Ishaan Bhardwaj Date: Tue, 16 Feb 2021 21:42:06 -0500 Subject: [PATCH] Marathon ST multiplier nerf again --- tetris/modes/marathon_st.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tetris/modes/marathon_st.lua b/tetris/modes/marathon_st.lua index 9909078..74978dc 100644 --- a/tetris/modes/marathon_st.lua +++ b/tetris/modes/marathon_st.lua @@ -164,7 +164,9 @@ function MarathonSTGame:updateSectionTimes(old_level, new_level) ) then self.section_boosts = self.section_boosts + 1 table.insert(self.section_boost_status, true) - self.grade_point_multiplier = self.grade_point_multiplier + 15 + self.grade_point_multiplier = self.grade_point_multiplier + ( + self.section_boosts == 9 and 12 or 11 + ) self.boost_message_time = 180 else table.insert(self.section_boost_status, false)