This commit is contained in:
Swept
2021-11-06 17:32:33 -07:00
committed by GitHub
parent 1bec086a0d
commit b46957e0d8
6 changed files with 17 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
using Content.Shared.Interaction;
using Content.Shared.Sound;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.ViewVariables;
@@ -17,5 +18,8 @@ namespace Content.Server.Atmos.Piping.Binary.Components
[DataField("pipe")]
[ViewVariables(VVAccess.ReadWrite)]
public string PipeName { get; } = "pipe";
[DataField("valveSound")]
public SoundSpecifier _valveSound { get; } = new SoundCollectionSpecifier("valveSqueak");
}
}