* the letter M * the letter N * the letter O * the letter P * the letter q * Update Resources/Prototypes/tags.yml --------- Co-authored-by: iaada <iaada@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
12 lines
279 B
C#
12 lines
279 B
C#
using Content.Shared.Tag;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Mind.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class TransferMindOnGibComponent : Component
|
|
{
|
|
[DataField]
|
|
public ProtoId<TagPrototype> TargetTag = "MindTransferTarget";
|
|
}
|