]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
fix cryopod volume (#27148)
authorslarticodefast <161409025+slarticodefast@users.noreply.github.com>
Sat, 20 Apr 2024 03:44:39 +0000 (05:44 +0200)
committerGitHub <noreply@github.com>
Sat, 20 Apr 2024 03:44:39 +0000 (23:44 -0400)
Content.Server/Medical/Components/CryoPodAirComponent.cs

index baaa3bcda0eae306f3680f2727ebbc4265cf12c1..72a10b391e7e21fc49c93eb03cdb2eb8c68eaf73 100644 (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);
 }