Skip to content

Commit

Permalink
QoL эвакуационного шаттла (#346)
Browse files Browse the repository at this point in the history
Вернул 5 минут вместо 3 на стыковку эвакуационного шаттла
Включил возможность досрочной отправки шаттла командованием
Предупреждение об отправке теперь не за 10 секунд, а за 30
Автоматический эвак вызывается теперь если смена 3 часа прошла

:cl: PyotrIgn
- tweak: Время стыковки эвак.шаттла увеличено до 5 минут
- tweak: Включена опция досрочной аварийной отправки шаттла
командованием
- tweak: Предупреждение об отправлении шаттла поступает теперь за 30
секунд вместо 10
- tweak: Автоматический эвак.шаттл вызывается после 3 часов смены
  • Loading branch information
PyotrIgn authored Aug 24, 2024
1 parent 6190085 commit a4759eb
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 @@ -1605,19 +1605,19 @@ public static readonly CVarDef<int>
/// Is the emergency shuttle allowed to be early launched.
/// </summary>
public static readonly CVarDef<bool> EmergencyEarlyLaunchAllowed =
CVarDef.Create("shuttle.emergency_early_launch_allowed", false, CVar.SERVERONLY);
CVarDef.Create("shuttle.emergency_early_launch_allowed", true, CVar.SERVERONLY); //ADT-Tweak - включен ранний запуск аварийного шаттла командованием

/// <summary>
/// How long the emergency shuttle remains docked with the station, in seconds.
/// </summary>
public static readonly CVarDef<float> EmergencyShuttleDockTime =
CVarDef.Create("shuttle.emergency_dock_time", 180f, CVar.SERVERONLY);
CVarDef.Create("shuttle.emergency_dock_time", 300f, CVar.SERVERONLY); //ADT-Tweak - время стыковки эвакшаттла увеличен до 5 минут

/// <summary>
/// How long after the console is authorized for the shuttle to early launch.
/// </summary>
public static readonly CVarDef<float> EmergencyShuttleAuthorizeTime =
CVarDef.Create("shuttle.emergency_authorize_time", 10f, CVar.SERVERONLY);
CVarDef.Create("shuttle.emergency_authorize_time", 30f, CVar.SERVERONLY); //ADT-Tweak - предупреждение о запуске за 30 секунд до отправки

/// <summary>
/// The minimum time for the emergency shuttle to arrive at centcomm.
Expand Down Expand Up @@ -1649,7 +1649,7 @@ public static readonly CVarDef<int>
/// Time in minutes after round start to auto-call the shuttle. Set to zero to disable.
/// </summary>
public static readonly CVarDef<int> EmergencyShuttleAutoCallTime =
CVarDef.Create("shuttle.auto_call_time", 90, CVar.SERVERONLY);
CVarDef.Create("shuttle.auto_call_time", 270, CVar.SERVERONLY); //ADT-Tweak - автоматический эвак вызывается после 3 часов

/// <summary>
/// Time in minutes after the round was extended (by recalling the shuttle) to call
Expand Down

0 comments on commit a4759eb

Please sign in to comment.