Make standing state down sound nullable (#28132)
This commit is contained in:
parent
30ea1215f8
commit
10aeac7560
|
|
@ -9,7 +9,7 @@ namespace Content.Shared.Standing
|
|||
{
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
[DataField]
|
||||
public SoundSpecifier DownSound { get; private set; } = new SoundCollectionSpecifier("BodyFall");
|
||||
public SoundSpecifier? DownSound { get; private set; } = new SoundCollectionSpecifier("BodyFall");
|
||||
|
||||
[DataField, AutoNetworkedField]
|
||||
public bool Standing { get; set; } = true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue