From 3dfb7a6e8593b914de42f206d2c05f01c34a4bfe Mon Sep 17 00:00:00 2001 From: liltenhead <104418166+liltenhead@users.noreply.github.com> Date: Sun, 24 Sep 2023 12:59:04 -0700 Subject: [PATCH] nerf maxcaps (#20226) --- Content.Server/Atmos/Components/GasTankComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Atmos/Components/GasTankComponent.cs b/Content.Server/Atmos/Components/GasTankComponent.cs index 8b411e38db..a649e57b45 100644 --- a/Content.Server/Atmos/Components/GasTankComponent.cs +++ b/Content.Server/Atmos/Components/GasTankComponent.cs @@ -8,7 +8,7 @@ namespace Content.Server.Atmos.Components [RegisterComponent] public sealed partial class GasTankComponent : Component, IGasMixtureHolder { - public const float MaxExplosionRange = 80f; + public const float MaxExplosionRange = 26f; private const float DefaultLowPressure = 0f; private const float DefaultOutputPressure = Atmospherics.OneAtmosphere;