From: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Date: Sun, 19 May 2024 22:35:22 +0000 (-0700) Subject: Make standing state down sound nullable (#28132) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=b7eed5c3485b683e372e6cee1ffec5c8cc859ad0;p=space-station-14.git Make standing state down sound nullable (#28132) --- diff --git a/Content.Shared/Standing/StandingStateComponent.cs b/Content.Shared/Standing/StandingStateComponent.cs index 5d7bb0a59f..0270872235 100644 --- a/Content.Shared/Standing/StandingStateComponent.cs +++ b/Content.Shared/Standing/StandingStateComponent.cs @@ -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;