From 082697c3cd5c4bed5c86bf62ec6299b99010a5d8 Mon Sep 17 00:00:00 2001 From: Kirby703 <14858059+Kirby703@users.noreply.github.com> Date: Sun, 9 Jul 2023 15:41:19 -0400 Subject: [PATCH] fix duplicate cool at 2000 now you have to survive the roll for gm! terrifying --- tetris/modes/marathon_2020.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tetris/modes/marathon_2020.lua b/tetris/modes/marathon_2020.lua index 7286620..54d1c3b 100644 --- a/tetris/modes/marathon_2020.lua +++ b/tetris/modes/marathon_2020.lua @@ -283,7 +283,7 @@ function Marathon2020Game:sectionPassed(old_level, new_level) ) else return ( - (new_level < 2001 and math.floor(old_level / 100) < math.floor(new_level / 100)) or + (new_level < 2000 and math.floor(old_level / 100) < math.floor(new_level / 100)) or (new_level >= 2020) ) end