Fix Survival A2N; I'll remove it once the mode config system is stable

pull/6/head
Rin 2021-08-22 07:38:01 +01:00
parent 99665f23e7
commit c65bd78653
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ InversionGame.hash = "InversionA2N"
InversionGame.tagline = "What if the active piece was invisible?"
function InversionGame:new(_, c)
SurvivalA2Game:new(_, c)
SurvivalA2Game:new(_,c)
self.piece_active_time = 0
end

View File

@ -6,8 +6,8 @@ SurvivalA2NGame.name = "Survival A2N"
SurvivalA2NGame.hash = "SurvivalA2N"
SurvivalA2NGame.tagline = "A variation of Survival A2 for Carnival of Derp."
function SurvivalA2NGame:new()
self.super:new()
function SurvivalA2NGame:new(_, c)
self.super:new(_, c)
self.next_queue_length = 3
self.enable_hold = true
end