using Content.Shared.Shuttles.Systems; namespace Content.Server.Shuttles.Components; /// /// Prevents FTL from occuring around this entity. /// [RegisterComponent, Access(typeof(SharedShuttleSystem))] public sealed partial class FTLExclusionComponent : Component { [DataField] public bool Enabled = true; [DataField(required: true)] public float Range = 32f; }