mirror of
https://github.com/SashLilac/cambridge.git
synced 2024-11-22 08:29:02 -06:00
Fixed stray ends
This commit is contained in:
parent
450833b246
commit
3c83ae0bf4
@ -248,7 +248,7 @@ local grade_conversion = {
|
||||
}
|
||||
|
||||
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
|
||||
self.grade_points = self.grade_points + (
|
||||
math.ceil(
|
||||
|
@ -322,7 +322,7 @@ local grade_conversion = {
|
||||
}
|
||||
|
||||
function MarathonA3Game:updateGrade(cleared_lines)
|
||||
if cleared_lines == 0 then return end
|
||||
if cleared_lines == 0 then return
|
||||
else
|
||||
if self.clear then
|
||||
if self:qualifiesForMRoll() then
|
||||
|
Loading…
Reference in New Issue
Block a user