Fixed stray ends

This commit is contained in:
Ishaan Bhardwaj 2021-01-23 13:50:40 -05:00
parent 450833b246
commit 3c83ae0bf4
2 changed files with 2 additions and 2 deletions

View File

@ -248,7 +248,7 @@ local grade_conversion = {
} }
function MarathonA2Game:updateGrade(cleared_lines) function MarathonA2Game:updateGrade(cleared_lines)
if self.clear or cleared_lines == 0 then return end if self.clear or cleared_lines == 0 then return
else else
self.grade_points = self.grade_points + ( self.grade_points = self.grade_points + (
math.ceil( math.ceil(

View File

@ -322,7 +322,7 @@ local grade_conversion = {
} }
function MarathonA3Game:updateGrade(cleared_lines) function MarathonA3Game:updateGrade(cleared_lines)
if cleared_lines == 0 then return end if cleared_lines == 0 then return
else else
if self.clear then if self.clear then
if self:qualifiesForMRoll() then if self:qualifiesForMRoll() then