Fix Survival A2N; I'll remove it once the mode config system is stable
parent
99665f23e7
commit
c65bd78653
|
@ -7,7 +7,7 @@ InversionGame.hash = "InversionA2N"
|
||||||
InversionGame.tagline = "What if the active piece was invisible?"
|
InversionGame.tagline = "What if the active piece was invisible?"
|
||||||
|
|
||||||
function InversionGame:new(_, c)
|
function InversionGame:new(_, c)
|
||||||
SurvivalA2Game:new(_, c)
|
SurvivalA2Game:new(_,c)
|
||||||
self.piece_active_time = 0
|
self.piece_active_time = 0
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,8 @@ SurvivalA2NGame.name = "Survival A2N"
|
||||||
SurvivalA2NGame.hash = "SurvivalA2N"
|
SurvivalA2NGame.hash = "SurvivalA2N"
|
||||||
SurvivalA2NGame.tagline = "A variation of Survival A2 for Carnival of Derp."
|
SurvivalA2NGame.tagline = "A variation of Survival A2 for Carnival of Derp."
|
||||||
|
|
||||||
function SurvivalA2NGame:new()
|
function SurvivalA2NGame:new(_, c)
|
||||||
self.super:new()
|
self.super:new(_, c)
|
||||||
self.next_queue_length = 3
|
self.next_queue_length = 3
|
||||||
self.enable_hold = true
|
self.enable_hold = true
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue