* Implements bureaucratic error and random sentience. * Adds the Vent Critters event. * bug moment * forgot ignores. * undo something i included in the PR by mistake. * address review
9 lines
223 B
C#
9 lines
223 B
C#
namespace Content.Server.StationEvents.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed class SentienceTargetComponent : Component
|
|
{
|
|
[DataField("flavorKind", required: true)]
|
|
public string FlavorKind = default!;
|
|
}
|