Stopped bottom-row garbage from clearing 5 lines. (#16)
Resolves #15. 1) Cleared row count is marked before the onPieceLock method is called, letting the piece lock procedure react to the count of rows the piece is about to clear. (In practice, only 0 and non-0 will be different.) 2) The modes with bottom-row garbage will not advance the garbage counter when the piece is about to clear lines, as should be the case. Also included: 3) Changed the Always O Randomizer to the Always Randomizer that takes which piece it should "always" produce as an argument in the constructor. 4) Fixed the torikan for level 800 in Phantom Mania 2. It should have been 4:45, not 4:40.
This commit is contained in:
@@ -92,7 +92,7 @@ function PhantomMania2Game:hitTorikan(old_level, new_level)
|
||||
self.level = 500
|
||||
return true
|
||||
end
|
||||
if old_level < 800 and new_level >= 800 and self.frames > sp(4,40) then
|
||||
if old_level < 800 and new_level >= 800 and self.frames > sp(4,45) then
|
||||
self.level = 800
|
||||
return true
|
||||
end
|
||||
@@ -155,8 +155,8 @@ function PhantomMania2Game:onLineClear(cleared_row_count)
|
||||
end
|
||||
end
|
||||
|
||||
function PhantomMania2Game:onPieceLock()
|
||||
self:advanceBottomRow(1)
|
||||
function PhantomMania2Game:onPieceLock(piece, cleared_row_count)
|
||||
if cleared_row_count == 0 then self:advanceBottomRow(1) end
|
||||
end
|
||||
|
||||
function PhantomMania2Game:onHold()
|
||||
|
||||
Reference in New Issue
Block a user