From 769b5043e373ca896a5cbb366c24bf213b40db3c Mon Sep 17 00:00:00 2001 From: Joe Zeng Date: Sun, 18 Jul 2021 00:25:05 -0400 Subject: [PATCH] Added a 25,000 grade point requirement to the GM roll. You need to go a _little_ further than the point grade of 30 to qualify for GM. --- tetris/modes/marathon_2020.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tetris/modes/marathon_2020.lua b/tetris/modes/marathon_2020.lua index 25f29de..aba483e 100644 --- a/tetris/modes/marathon_2020.lua +++ b/tetris/modes/marathon_2020.lua @@ -407,11 +407,12 @@ GM-roll requirements You qualify for the GM roll if you: - Reach level 2020 - with a grade of 50 +- and at least 25,000 grade points - in less than 13:30.00 total. ]]-- - return self.level >= 2020 and self:getTotalGrade() == 50 and self.frames <= frameTime(13,30) + return self.level >= 2020 and self:getTotalGrade() == 50 and self.grade_points >= 25000 and self.frames <= frameTime(13,30) end function Marathon2020Game:drawGrid()