Lung tweaks (#6634)

This commit is contained in:
mirrorcult
2022-02-10 14:58:41 -07:00
committed by GitHub
parent a8f3e56bc4
commit 2738b46362
8 changed files with 10 additions and 25 deletions

View File

@@ -11,7 +11,7 @@ using Robust.Shared.ViewVariables;
namespace Content.Server.Body.Components;
[RegisterComponent, Friend(typeof(LungSystem))]
public class LungComponent : Component
public sealed class LungComponent : Component
{
[DataField("air")]
public GasMixture Air { get; set; } = new()
@@ -20,9 +20,6 @@ public class LungComponent : Component
Temperature = Atmospherics.NormalBodyTemperature
};
[DataField("validReagentGases", required: true)]
public HashSet<Gas> ValidGases = default!;
[ViewVariables]
public Solution LungSolution = default!;
}