Wrap gateway generator in cvar for dev (#21758)

This commit is contained in:
metalgearsloth
2023-11-22 15:36:38 +11:00
committed by GitHub
parent 985da52191
commit 5cbf935cf0
4 changed files with 20 additions and 3 deletions

View File

@@ -1812,5 +1812,12 @@ namespace Content.Shared.CCVar
/// </summary>
public static readonly CVarDef<string> ReplayAutoRecordTempDir =
CVarDef.Create("replay.auto_record_temp_dir", "", CVar.SERVERONLY);
/*
* Miscellaneous
*/
public static readonly CVarDef<bool> GatewayGeneratorEnabled =
CVarDef.Create("gateway.generator_enabled", true);
}
}