Removed the BG limit, because someone is a madman

This commit is contained in:
Ishaan Bhardwaj 2020-10-09 17:55:22 -04:00 committed by GitHub
parent 4cb20101b0
commit 9982613e26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -145,7 +145,7 @@ function KonohaGame:onLineClear(cleared_row_count)
end end
function KonohaGame:getBackground() function KonohaGame:getBackground()
return math.min(math.floor(self.level / 100), 9) return math.floor(self.level / 100)
end end
function KonohaGame:drawScoringInfo() function KonohaGame:drawScoringInfo()