Disable emergency shuttles locally (#9195)

Can still re-enable via cvar but this is to make devving faster.
This commit is contained in:
metalgearsloth
2022-06-27 15:19:40 +10:00
committed by GitHub
parent 8a6d914586
commit 12e5cdacae
3 changed files with 51 additions and 4 deletions

View File

@@ -928,6 +928,12 @@ namespace Content.Shared.CCVar
public static readonly CVarDef<float> EmergencyShuttleTransitTime =
CVarDef.Create("shuttle.emergency_transit_time", 120f, CVar.SERVERONLY);
/// <summary>
/// Whether the emergency shuttle is enabled or should the round just end.
/// </summary>
public static readonly CVarDef<bool> EmergencyShuttleEnabled =
CVarDef.Create("shuttle.emergency_enabled", true, CVar.SERVERONLY);
/*
* VIEWPORT
*/