13 lines
335 B
C#
13 lines
335 B
C#
namespace Content.Server._NF.Pirate.Components;
|
|
|
|
/// <summary>
|
|
/// Denotes an entity whose mind gets the pirate captain role when spawned.
|
|
/// Similar to AutoTraitorComponent.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class AutoPirateCaptainComponent : Component
|
|
{
|
|
[DataField]
|
|
public bool ApplyFaction = true;
|
|
}
|