using Content.Server.Storage; namespace Content.Server.Drone.Components { [RegisterComponent] public sealed class DroneComponent : Component { [DataField("tools")] public List Tools = new(); public List ToolUids = new(); public bool AlreadyAwoken = false; public float InteractionBlockRange = 2.15f; /// /// If you are using drone component for /// something that shouldn't have restrictions set this to /// false. /// [DataField("applyLaws")] public bool ApplyLaws = true; } }