From 9381091110d7faf3678101e6e4d984dc9d887ab6 Mon Sep 17 00:00:00 2001 From: Ishaan Bhardwaj Date: Wed, 3 Nov 2021 17:34:34 -0400 Subject: [PATCH] Updated 3694 -> 3701 in other places --- tetris/modes/marathon_a2.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tetris/modes/marathon_a2.lua b/tetris/modes/marathon_a2.lua index cddd55d..08fccd3 100644 --- a/tetris/modes/marathon_a2.lua +++ b/tetris/modes/marathon_a2.lua @@ -365,10 +365,10 @@ function MarathonA2Game:drawScoringInfo() love.graphics.setFont(font_3x5_3) if self.clear then if self:qualifiesForMRoll() then - if self.lines >= 32 and self.roll_frames > 3694 then love.graphics.setColor(1, 0.5, 0, 1) + if self.lines >= 32 and self.roll_frames > 3701 then love.graphics.setColor(1, 0.5, 0, 1) else love.graphics.setColor(0, 1, 0, 1) end else - if self.roll_frames > 3694 then love.graphics.setColor(1, 0.5, 0, 1) + if self.roll_frames > 3701 then love.graphics.setColor(1, 0.5, 0, 1) else love.graphics.setColor(0, 1, 0, 1) end end end