Add missing CleanReturnAsync() to some tests. (#18471)
This commit is contained in:
@@ -12,12 +12,17 @@ public sealed class BodyPartComponent : Component
|
||||
[DataField("body")]
|
||||
public EntityUid? Body;
|
||||
|
||||
[DataField("parent")]
|
||||
// This inter-entity relationship makes be deeply uncomfortable because its probably going to re-encounter all of the
|
||||
// networking issues that containers and joints have.
|
||||
// TODO just use containers. Please.
|
||||
// Do not use set or get data from this in client-side code.
|
||||
public BodyPartSlot? ParentSlot;
|
||||
|
||||
// Do not use set or get data from this in client-side code.
|
||||
[DataField("children")]
|
||||
public Dictionary<string, BodyPartSlot> Children = new();
|
||||
|
||||
// See all the above ccomments.
|
||||
[DataField("organs")]
|
||||
public Dictionary<string, OrganSlot> Organs = new();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user