Files
crystall-punk-14/Content.Server/Drone/Components/DroneComponent.cs

23 lines
664 B
C#
Raw Normal View History

2022-02-10 17:15:06 -05:00
using Content.Server.Storage;
using Content.Shared.Storage;
2022-02-10 17:15:06 -05:00
namespace Content.Server.Drone.Components
{
[RegisterComponent]
public sealed class DroneComponent : Component
{
[DataField("tools")] public List<EntitySpawnEntry> Tools = new();
public List<EntityUid> ToolUids = new();
public bool AlreadyAwoken = false;
2022-03-13 05:53:01 -04:00
public float InteractionBlockRange = 2.15f;
/// <summary>
/// If you are using drone component for
/// something that shouldn't have restrictions set this to
/// false.
/// </summary>
[DataField("applyLaws")]
public bool ApplyLaws = true;
2022-02-10 17:15:06 -05:00
}
}