Files
crystall-punk-14/Content.Shared/_CP14/CCvar/CCvars.CP14Misc.cs
Ed 66058ffc49 Auto CBT (#997)
* auto doggy

* fix

* fix
2025-03-09 23:29:20 +03:00

16 lines
530 B
C#

using Robust.Shared.Configuration;
namespace Content.Shared.CCVar;
public sealed partial class CCVars
{
public static readonly CVarDef<int> CP14RoundEndMinutes =
CVarDef.Create("cp14.round_end_minutes", 15, CVar.SERVERONLY);
/// <summary>
/// Automatically shuts down the server outside of the CBT plytime. Shitcoded enough, but it's temporary anyway
/// </summary>
public static readonly CVarDef<bool> CP14ClosedBetaTest =
CVarDef.Create("cp14.closet_beta_test", false, CVar.SERVERONLY);
}