From c7f4294d7328be5fd7f9bcabc544246135bd78fd Mon Sep 17 00:00:00 2001 From: Flareguy <78941145+Flareguy@users.noreply.github.com> Date: Mon, 27 Nov 2023 15:42:29 -0600 Subject: [PATCH] disables space wind and tile ripping cvars (#21847) --- Content.Shared/CCVar/CCVars.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 7d7a3e6872d..4e614f4f7a9 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -929,7 +929,7 @@ public sealed class CCVars : CVars /// Whether gas differences will move entities. /// public static readonly CVarDef SpaceWind = - CVarDef.Create("atmos.space_wind", true, CVar.SERVERONLY); + CVarDef.Create("atmos.space_wind", false, CVar.SERVERONLY); /// /// Divisor from maxForce (pressureDifference * 2.25f) to force applied on objects. @@ -975,7 +975,7 @@ public sealed class CCVars : CVars /// Needs and to be enabled to work. /// public static readonly CVarDef MonstermosRipTiles = - CVarDef.Create("atmos.monstermos_rip_tiles", true, CVar.SERVERONLY); + CVarDef.Create("atmos.monstermos_rip_tiles", false, CVar.SERVERONLY); /// /// Whether explosive depressurization will cause the grid to gain an impulse.