mirror of
https://github.com/SashLilac/cambridge.git
synced 2024-11-22 13:49:02 -06:00
Made it so that in TGM3, you can only get GM by clearing the roll, and fixed hold sound in Phantom Mania 2
This commit is contained in:
parent
843b1e108a
commit
b27ef0e9f4
@ -362,6 +362,8 @@ function MarathonA3Game:getLetterGrade()
|
||||
return "M" .. tostring(grade - 17)
|
||||
elseif grade < 32 then
|
||||
return master_grades[grade - 26]
|
||||
elseif grade >= 32 and self.roll_frames < 3238 then
|
||||
return "MM"
|
||||
else
|
||||
return "GM"
|
||||
end
|
||||
|
@ -181,6 +181,7 @@ function PhantomMania2Game:onPieceLock(piece, cleared_row_count)
|
||||
end
|
||||
|
||||
function PhantomMania2Game:onHold()
|
||||
self.super.onHold()
|
||||
self.hold_age = 0
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user