makes prototypeinheritance opt in

This commit is contained in:
Paul
2021-03-05 11:13:00 +01:00
parent 14f2deb47f
commit 73cef00aeb
38 changed files with 7 additions and 156 deletions

View File

@@ -20,10 +20,6 @@ namespace Content.Shared.GameObjects.Components.Body.Preset
[field: DataField("id", required: true)]
public string ID { get; } = default!;
[ViewVariables]
[field: DataField("parent")]
public string? Parent { get; }
[DataField("partIDs")]
private Dictionary<string, string> _partIDs = new();

View File

@@ -32,10 +32,6 @@ namespace Content.Shared.GameObjects.Components.Body.Template
[field: DataField("id", required: true)]
public string ID { get; } = default!;
[ViewVariables]
[field: DataField("parent")]
public string? Parent { get; }
[ViewVariables]
[field: DataField("name")]
public string Name { get; } = string.Empty;