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?" 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

View File

@ -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