Bad 2 Da Bone [Skeleton Tweaks] (#11669)

Co-authored-by: Kara <lunarautomaton6@gmail.com>
This commit is contained in:
Nemanja
2022-10-15 18:06:01 -04:00
committed by GitHub
parent e4bd8f8653
commit 9363674bd5
15 changed files with 249 additions and 32 deletions

View File

@@ -0,0 +1,11 @@
using Content.Shared.Tag;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.Mind.Components;
[RegisterComponent]
public sealed class TransferMindOnGibComponent : Component
{
[DataField("targetTag", customTypeSerializer: typeof(PrototypeIdSerializer<TagPrototype>))]
public string TargetTag = "MindTransferTarget";
}