Station records (#8720)
Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
This commit is contained in:
@@ -955,6 +955,37 @@ namespace Content.Shared.CCVar
|
||||
public static readonly CVarDef<string> CentcommMap =
|
||||
CVarDef.Create("shuttle.centcomm_map", "/Maps/centcomm.yml", CVar.SERVERONLY);
|
||||
|
||||
/*
|
||||
* Crew Manifests
|
||||
*/
|
||||
|
||||
/// <summary>
|
||||
/// Setting this allows a crew manifest to be opened from any window
|
||||
/// that has a crew manifest button, and sends the correct message.
|
||||
/// If this is false, only in-game entities will allow you to see
|
||||
/// the crew manifest, if the functionality is coded in.
|
||||
/// Having administrator priveledge ignores this, but will still
|
||||
/// hide the button in UI windows.
|
||||
/// </summary>
|
||||
public static readonly CVarDef<bool> CrewManifestWithoutEntity =
|
||||
CVarDef.Create("crewmanifest.no_entity", true, CVar.REPLICATED);
|
||||
|
||||
/// <summary>
|
||||
/// Setting this allows the crew manifest to be viewed from 'unsecure'
|
||||
/// entities, such as the PDA.
|
||||
/// </summary>
|
||||
public static readonly CVarDef<bool> CrewManifestUnsecure =
|
||||
CVarDef.Create("crewmanifest.unsecure", true, CVar.REPLICATED);
|
||||
|
||||
/// <summary>
|
||||
/// Dictates the order the crew manifest will appear in, in terms of its sections.
|
||||
/// Sections not in this list will appear at the end of the list, in no
|
||||
/// specific order.
|
||||
/// </summary>
|
||||
public static readonly CVarDef<string> CrewManifestOrdering =
|
||||
CVarDef.Create("crewmanifest.ordering", "Command,Security,Science,Medical,Engineering,Cargo,Civilian,Unknown",
|
||||
CVar.REPLICATED);
|
||||
|
||||
/*
|
||||
* VIEWPORT
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user