Skip to content

Commit

Permalink
Set default cvar values for voting presets, arrivals and emergency sh…
Browse files Browse the repository at this point in the history
…uttle
  • Loading branch information
DrSmugleaf committed Apr 25, 2024
1 parent a8f9134 commit af03daa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Content.Shared/CCVar/CCVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,7 @@ public sealed class CCVars : CVars
/// See vote.enabled, but specific to preset votes
/// </summary>
public static readonly CVarDef<bool> VotePresetEnabled =
CVarDef.Create("vote.preset_enabled", true, CVar.SERVERONLY);
CVarDef.Create("vote.preset_enabled", false, CVar.SERVERONLY);

/// <summary>
/// See vote.enabled, but specific to map votes
Expand Down Expand Up @@ -1414,13 +1414,13 @@ public sealed class CCVars : CVars
/// Whether the arrivals terminal should be on a planet map.
/// </summary>
public static readonly CVarDef<bool> ArrivalsPlanet =
CVarDef.Create("shuttle.arrivals_planet", true, CVar.SERVERONLY);
CVarDef.Create("shuttle.arrivals_planet", false, CVar.SERVERONLY);

/// <summary>
/// Whether the arrivals shuttle is enabled.
/// </summary>
public static readonly CVarDef<bool> ArrivalsShuttles =
CVarDef.Create("shuttle.arrivals", true, CVar.SERVERONLY);
CVarDef.Create("shuttle.arrivals", false, CVar.SERVERONLY);

/// <summary>
/// The map to use for the arrivals station.
Expand Down Expand Up @@ -1485,7 +1485,7 @@ public sealed class CCVars : CVars
/// Whether the emergency shuttle is enabled or should the round just end.
/// </summary>
public static readonly CVarDef<bool> EmergencyShuttleEnabled =
CVarDef.Create("shuttle.emergency", true, CVar.SERVERONLY);
CVarDef.Create("shuttle.emergency", false, CVar.SERVERONLY);

/// <summary>
/// The percentage of time passed from the initial call to when the shuttle can no longer be recalled.
Expand Down

0 comments on commit af03daa

Please sign in to comment.