fix cryopod volume (#27148) (#621)

Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
This commit is contained in:
RedBurningPhoenix
2024-08-15 17:15:46 +05:00
committed by GitHub
parent 98b26ff951
commit aa8dc511da

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);
}