Merge pull request #1 from SashLilac/master

Removed the BG limit, because someone is a madman
This commit is contained in:
Hailey
2020-10-10 08:02:00 +10:00
committed by GitHub

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