From 9982613e2636d268e9189a54675cfda2db06f2f3 Mon Sep 17 00:00:00 2001 From: Ishaan Bhardwaj <59454579+SashLilac@users.noreply.github.com> Date: Fri, 9 Oct 2020 17:55:22 -0400 Subject: [PATCH] Removed the BG limit, because someone is a madman --- tetris/modes/konoha.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tetris/modes/konoha.lua b/tetris/modes/konoha.lua index fb18c0e..009ab2c 100755 --- a/tetris/modes/konoha.lua +++ b/tetris/modes/konoha.lua @@ -145,7 +145,7 @@ function KonohaGame:onLineClear(cleared_row_count) end function KonohaGame:getBackground() - return math.min(math.floor(self.level / 100), 9) + return math.floor(self.level / 100) end function KonohaGame:drawScoringInfo()