19 lines
621 B
C#
19 lines
621 B
C#
using Robust.Shared.Configuration;
|
|
|
|
namespace Content.Shared.CCVar;
|
|
|
|
public sealed partial class CCVars
|
|
{
|
|
/// <summary>
|
|
/// Duration for missions
|
|
/// </summary>
|
|
public static readonly CVarDef<float>
|
|
SalvageExpeditionDuration = CVarDef.Create("salvage.expedition_duration", 1800f, CVar.REPLICATED); // Horizon
|
|
|
|
/// <summary>
|
|
/// Cooldown for missions.
|
|
/// </summary>
|
|
public static readonly CVarDef<float>
|
|
SalvageExpeditionCooldown = CVarDef.Create("salvage.expedition_cooldown", 300f, CVar.REPLICATED); // Frontier: 780f<300f TODO: return this up in another PR
|
|
}
|