From 043079384deee8551e39d842544191b54b719adb Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Tue, 13 Dec 2022 21:26:35 +1100 Subject: [PATCH] Change planet command gas constants (#13014) --- Content.Server/Maps/PlanetCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Maps/PlanetCommand.cs b/Content.Server/Maps/PlanetCommand.cs index e5c249722b..d94a766303 100644 --- a/Content.Server/Maps/PlanetCommand.cs +++ b/Content.Server/Maps/PlanetCommand.cs @@ -62,7 +62,7 @@ public sealed class PlanetCommand : IConsoleCommand var atmos = _entManager.EnsureComponent(mapUid); atmos.Space = false; - var moles = new float[Atmospherics.TotalNumberOfGases]; + var moles = new float[Atmospherics.AdjustedNumberOfGases]; moles[(int) Gas.Oxygen] = 21.824779f; moles[(int) Gas.Nitrogen] = 82.10312f;