Misc bugfixes

pull/4/head
Ishaan Bhardwaj 2021-02-22 11:20:31 -05:00
parent 737d25eb6a
commit b1b980eb29
2 changed files with 5 additions and 1 deletions

View File

@ -10,6 +10,10 @@ FourWideGame.name = "4-wide Simulator"
FourWideGame.hash = "4wide"
FourWideGame.tagline = "The board has gotten narrower! Can you survive the increasing speeds?"
function FourWideGame:new()
SurvivalA3Game:new()
end
function FourWideGame:initialize(ruleset)
self.super:initialize(ruleset)
self.grid = Grid(4, 24)

View File

@ -23,7 +23,7 @@ function ProGame:initialize(ruleset)
end
function ProGame:getARE() return 6 end
function ProGame:getLineARE() return 6 end
function ProGame:getLineARE() return 12 end
function ProGame:getLineClearDelay() return 6 end
function ProGame:getDasLimit() return config.das end
function ProGame:getARR() return config.arr end