Skip to content

Commit

Permalink
rsi diff bot fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheackraze committed Mar 3, 2024
1 parent f73bb31 commit dd331eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
File renamed without changes.
10 changes: 5 additions & 5 deletions Content.Shared/CCVar/CCVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1284,17 +1284,17 @@ public static readonly CVarDef<bool>
/// See vote.enabled, but specific to restart votes
/// </summary>
public static readonly CVarDef<bool> VoteRestartEnabled =
CVarDef.Create("vote.restart_enabled", true, CVar.SERVERONLY);
CVarDef.Create("vote.restart_enabled", false, CVar.SERVERONLY);

/// <summary>
/// Config for when the restart vote should be allowed to be called regardless with less than this amount of players.
/// </summary>
public static readonly CVarDef<int> VoteRestartMaxPlayers =
CVarDef.Create("vote.restart_max_players", 20, CVar.SERVERONLY);
CVarDef.Create("vote.restart_max_players", 4, CVar.SERVERONLY);

/// <summary>
/// Config for when the restart vote should be allowed to be called based on percentage of ghosts.
///
/// </summary>
public static readonly CVarDef<int> VoteRestartGhostPercentage =
CVarDef.Create("vote.restart_ghost_percentage", 75, CVar.SERVERONLY);

Expand All @@ -1314,7 +1314,7 @@ public static readonly CVarDef<bool>
/// The required ratio of the server that must agree for a restart round vote to go through.
/// </summary>
public static readonly CVarDef<float> VoteRestartRequiredRatio =
CVarDef.Create("vote.restart_required_ratio", 0.85f, CVar.SERVERONLY);
CVarDef.Create("vote.restart_required_ratio", 0.90f, CVar.SERVERONLY);

/// <summary>
/// Whether or not to prevent the restart vote from having any effect when there is an online admin
Expand All @@ -1339,7 +1339,7 @@ public static readonly CVarDef<int>
/// Sets the duration of the restart vote timer.
/// </summary>
public static readonly CVarDef<int>
VoteTimerRestart = CVarDef.Create("vote.timerrestart", 60, CVar.SERVERONLY);
VoteTimerRestart = CVarDef.Create("vote.timerrestart", 300, CVar.SERVERONLY);

/// <summary>
/// Sets the duration of the gamemode/preset vote timer.
Expand Down

0 comments on commit dd331eb

Please sign in to comment.