fix the bug hanging up when starting M-roll

This commit is contained in:
hebo-MAI 2023-01-09 00:12:00 +09:00 committed by GitHub
parent 323c457809
commit 40ac08c7e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -249,11 +249,14 @@ local grade_conversion = {
} }
function MarathonA2Game:whilePieceActive() function MarathonA2Game:whilePieceActive()
if self.clear then return
else
self.grade_point_decay_counter = self.grade_point_decay_counter + 1 self.grade_point_decay_counter = self.grade_point_decay_counter + 1
if self.grade_point_decay_counter >= grade_point_decays[self.grade + 1] then if self.grade_point_decay_counter >= grade_point_decays[self.grade + 1] then
self.grade_point_decay_counter = 0 self.grade_point_decay_counter = 0
self.grade_points = math.max(0, self.grade_points - 1) self.grade_points = math.max(0, self.grade_points - 1)
end end
end
end end
function MarathonA2Game:updateGrade(cleared_lines) function MarathonA2Game:updateGrade(cleared_lines)