Compare commits

..

2 Commits

Author SHA1 Message Date
Ishaan Bhardwaj
0a0053276b SG!!!! 2020-10-09 21:14:20 -04:00
Ishaan Bhardwaj
9982613e26 Removed the BG limit, because someone is a madman 2020-10-09 17:55:22 -04:00
2 changed files with 7 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()

View File

@@ -32,6 +32,12 @@ function MarathonA3Game:new()
self.randomizer = History6RollsRandomizer()
self.SGnames = {
"9", "8", "7", "6", "5", "4", "3", "2", "1",
"S1", "S2", "S3", "S4", "S5", "S6", "S7", "S8", "S9",
"GM"
}
self.lock_drop = true
self.lock_hard_drop = true
self.enable_hold = true