Files
tbd-station-14/Content.Server/Tools/Innate/InnateToolComponent.cs
Debug 8c6a8c3c5c Remove drones, fix InnateToolSystem (#25372)
* Fix drones

* They dont need a full bloodstream

* Incorrect indentation

* Nuke drones

* Fix ClothingHeadHatCatEars

* Remove last mention of drones

* Implement requested changes
2024-02-20 23:23:04 -07:00

13 lines
341 B
C#

using Content.Shared.Storage;
namespace Content.Server.Tools.Innate
{
[RegisterComponent]
public sealed partial class InnateToolComponent : Component
{
[DataField("tools")] public List<EntitySpawnEntry> Tools = new();
public List<EntityUid> ToolUids = new();
public List<string> ToSpawn = new();
}
}