serv4 + submodule update (#12740)
Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
This commit is contained in:
@@ -16,7 +16,7 @@ public sealed class BodyComponent : Component, IDraggable
|
||||
public readonly string? Prototype;
|
||||
|
||||
[DataField("root")]
|
||||
public BodyPartSlot Root = default!;
|
||||
public BodyPartSlot? Root;
|
||||
|
||||
[DataField("gibSound")]
|
||||
public SoundSpecifier GibSound = new SoundCollectionSpecifier("gib");
|
||||
|
||||
@@ -7,10 +7,10 @@ namespace Content.Shared.Body.Components;
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class BodyComponentState : ComponentState
|
||||
{
|
||||
public readonly BodyPartSlot Root;
|
||||
public readonly BodyPartSlot? Root;
|
||||
public readonly SoundSpecifier GibSound;
|
||||
|
||||
public BodyComponentState(BodyPartSlot root, SoundSpecifier gibSound)
|
||||
public BodyComponentState(BodyPartSlot? root, SoundSpecifier gibSound)
|
||||
{
|
||||
Root = root;
|
||||
GibSound = gibSound;
|
||||
|
||||
Reference in New Issue
Block a user