From 711fa830a3f2f8de25095cd2332e3215dd328d79 Mon Sep 17 00:00:00 2001 From: Joe Z Date: Sun, 18 Jul 2021 22:20:51 -0400 Subject: [PATCH] Added a few minutes to the torikans. --- tetris/modes/marathon_2020.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tetris/modes/marathon_2020.lua b/tetris/modes/marathon_2020.lua index f852c32..7994ecf 100644 --- a/tetris/modes/marathon_2020.lua +++ b/tetris/modes/marathon_2020.lua @@ -290,10 +290,10 @@ function Marathon2020Game:sectionPassed(old_level, new_level) end function Marathon2020Game:checkTorikan(section) - if section == 5 and self.frames < frameTime(6,00,00) then self.torikan_passed[500] = true end - if section == 9 and self.frames < frameTime(8,30,00) then self.torikan_passed[900] = true end - if section == 10 and self.frames < frameTime(8,45,00) then self.torikan_passed[1000] = true end - if section == 15 and self.frames < frameTime(11,30,00) then self.torikan_passed[1500] = true end + if section == 5 and self.frames < frameTime(8,00,00) then self.torikan_passed[500] = true end + if section == 9 and self.frames < frameTime(10,30,00) then self.torikan_passed[900] = true end + if section == 10 and self.frames < frameTime(10,45,00) then self.torikan_passed[1000] = true end + if section == 15 and self.frames < frameTime(12,30,00) then self.torikan_passed[1500] = true end if section == 19 and self.frames < frameTime(13,15,00) then self.torikan_passed[1900] = true end end