]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Make standing state down sound nullable (#28132)
authorDrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com>
Sun, 19 May 2024 22:35:22 +0000 (15:35 -0700)
committerGitHub <noreply@github.com>
Sun, 19 May 2024 22:35:22 +0000 (16:35 -0600)
Content.Shared/Standing/StandingStateComponent.cs

index 5d7bb0a59fdb6817f30f4e18953168c838bf5692..027087223554346d07b52bcabe19e329d6191d44 100644 (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;