Remove plural property from body parts (#2294)

This commit is contained in:
DrSmugleaf
2020-10-19 09:06:50 +02:00
committed by GitHub
parent da0b6f333c
commit 8f98e14522
3 changed files with 0 additions and 20 deletions

View File

@@ -56,9 +56,6 @@ namespace Content.Shared.GameObjects.Components.Body.Part
}
[ViewVariables] public BodyPartType PartType { get; private set; }
[ViewVariables] public string Plural { get; private set; } = string.Empty;
[ViewVariables] public int Size { get; private set; }
[ViewVariables] public int SizeUsed { get; private set; }
@@ -128,8 +125,6 @@ namespace Content.Shared.GameObjects.Components.Body.Part
serializer.DataField(this, b => b.PartType, "partType", BodyPartType.Other);
serializer.DataField(this, b => b.Plural, "plural", string.Empty);
serializer.DataField(this, b => b.Size, "size", 1);
serializer.DataField(this, b => b.Compatibility, "compatibility", BodyPartCompatibility.Universal);