* Replace usages of customTypeSerializer PrototypeIdListSerializer with something that doesn't take 20 separate words to type out * Missed one * Missed another * Fix data field ids
17 lines
394 B
C#
17 lines
394 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.Implants.Components;
|
|
|
|
/// <summary>
|
|
/// Implants an entity automatically on MapInit.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class AutoImplantComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// List of implants to inject.
|
|
/// </summary>
|
|
[DataField(required: true)]
|
|
public List<EntProtoId> Implants = new();
|
|
}
|