Files
tbd-station-14/Content.Shared/CCVar/CCVars.Events.cs
Simon eff25810c5 [ChangeCVarCommand] Mapping Command (#35239)
[ChangeCVarCommand] MappingCommand
2025-02-18 11:26:08 +01:00

16 lines
478 B
C#

using Content.Shared.Administration;
using Content.Shared.CCVar.CVarAccess;
using Robust.Shared.Configuration;
namespace Content.Shared.CCVar;
public sealed partial class CCVars
{
/// <summary>
/// Controls if the game should run station events
/// </summary>
[CVarControl(AdminFlags.Server | AdminFlags.Mapping)]
public static readonly CVarDef<bool>
EventsEnabled = CVarDef.Create("events.enabled", true, CVar.ARCHIVE | CVar.SERVERONLY);
}