Skip to content

Commit

Permalink
yeag
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyndomen committed Jan 11, 2025
1 parent 521d322 commit a0dbf56
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Content.Shared/_DV/CCVars/DCCVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,23 @@ public sealed class DCCVars
public static readonly CVarDef<bool> PsionicRollsEnabled =
CVarDef.Create("psionics.rolls_enabled", true, CVar.SERVERONLY);

/// <summary>
/// Anti-EORG measure. Will add pacified to all players upon round end.
/// Its not perfect, but gets the job done.
/// </summary>
public static readonly CVarDef<bool> RoundEndPacifist =
CVarDef.Create("game.round_end_pacifist", false, CVar.SERVERONLY);

/*
* No EORG
*/

/// <summary>
/// Whether the no EORG popup is enabled.
/// </summary>
public static readonly CVarDef<bool> RoundEndNoEorgPopup =
CVarDef.Create("game.round_end_eorg_popup_enabled", true, CVar.SERVER | CVar.REPLICATED);

/// <summary>
/// Skip the no EORG popup.
/// </summary>
Expand Down

0 comments on commit a0dbf56

Please sign in to comment.