Add access locks to gas canisters (#10575)

This commit is contained in:
Justin Trotter
2022-09-16 09:06:29 -05:00
committed by GitHub
parent c893653078
commit 6bf45709e9
8 changed files with 59 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
using Content.Shared.Atmos;
using Robust.Shared.Audio;
namespace Content.Server.Atmos.Piping.Unary.Components
{
@@ -52,5 +53,8 @@ namespace Content.Server.Atmos.Piping.Unary.Components
[ViewVariables(VVAccess.ReadWrite)]
[DataField("releaseValve")]
public bool ReleaseValve { get; set; } = false;
[DataField("accessDeniedSound")]
public SoundSpecifier AccessDeniedSound = new SoundPathSpecifier("/Audio/Machines/custom_deny.ogg");
}
}