Files
OldThink/Content.Server/Objectives/Components/EscapeShuttleConditionComponent.cs

12 lines
351 B
C#
Raw Permalink Normal View History

using Content.Server.Objectives.Systems;
namespace Content.Server.Objectives.Components;
/// <summary>
/// Requires that the player is on the emergency shuttle's grid when docking to CentCom.
/// </summary>
[RegisterComponent, Access(typeof(EscapeShuttleConditionSystem))]
public sealed partial class EscapeShuttleConditionComponent : Component
{
}