fix cryopod volume (#27148)

This commit is contained in:
slarticodefast
2024-04-20 05:44:39 +02:00
committed by GitHub
parent e5a5196b1f
commit b22c06230c

View File

@@ -11,5 +11,5 @@ public sealed partial class CryoPodAirComponent : Component
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("gasMixture")]
public GasMixture Air { get; set; } = new(Atmospherics.OneAtmosphere);
public GasMixture Air { get; set; } = new GasMixture(1000f);
}