Merge pull request #1 from SashLilac/master

Removed the BG limit, because someone is a madman
pull/1/head
Hailey 2020-10-10 08:02:00 +10:00 committed by GitHub
commit 67abf35a28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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()