Make standing state down sound nullable (#28132)

This commit is contained in:
DrSmugleaf
2024-05-19 15:35:22 -07:00
committed by GitHub
parent 0307cb2a83
commit b7eed5c348

View File

@@ -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;