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