Misc bugfixes
parent
737d25eb6a
commit
b1b980eb29
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue