From 7fbf2c9873a08ef5582013d0dbe4fef11dc9aa6d Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 7 Feb 2021 23:55:10 +1100 Subject: [PATCH] Increase lobbyduration default (#3099) I think 60's okay for SSS but when we get actual rounds I'd make it 90. Co-authored-by: Metal Gear Sloth --- Content.Shared/CCVars.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/CCVars.cs b/Content.Shared/CCVars.cs index 7fe2d2eac9..2d69e529f8 100644 --- a/Content.Shared/CCVars.cs +++ b/Content.Shared/CCVars.cs @@ -29,7 +29,7 @@ namespace Content.Shared GameLobbyEnabled = CVarDef.Create("game.lobbyenabled", false, CVar.ARCHIVE); public static readonly CVarDef - GameLobbyDuration = CVarDef.Create("game.lobbyduration", 20, CVar.ARCHIVE); + GameLobbyDuration = CVarDef.Create("game.lobbyduration", 60, CVar.ARCHIVE); public static readonly CVarDef GameLobbyDefaultPreset = CVarDef.Create("game.defaultpreset", "Suspicion", CVar.ARCHIVE);