]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
disables space wind and tile ripping cvars (#21847)
authorFlareguy <78941145+Flareguy@users.noreply.github.com>
Mon, 27 Nov 2023 21:42:29 +0000 (15:42 -0600)
committerGitHub <noreply@github.com>
Mon, 27 Nov 2023 21:42:29 +0000 (14:42 -0700)
Content.Shared/CCVar/CCVars.cs

index 7d7a3e6872dc00aee6019c095687f038ed14730f..4e614f4f7a9b2482855fe2b988c25e7ff827450d 100644 (file)
@@ -929,7 +929,7 @@ namespace Content.Shared.CCVar
         ///     Whether gas differences will move entities.
         /// </summary>
         public static readonly CVarDef<bool> SpaceWind =
-            CVarDef.Create("atmos.space_wind", true, CVar.SERVERONLY);
+            CVarDef.Create("atmos.space_wind", false, CVar.SERVERONLY);
 
         /// <summary>
         ///     Divisor from maxForce (pressureDifference * 2.25f) to force applied on objects.
@@ -975,7 +975,7 @@ namespace Content.Shared.CCVar
         ///     Needs <see cref="MonstermosEqualization"/> and <see cref="MonstermosDepressurization"/> to be enabled to work.
         /// </summary>
         public static readonly CVarDef<bool> MonstermosRipTiles =
-            CVarDef.Create("atmos.monstermos_rip_tiles", true, CVar.SERVERONLY);
+            CVarDef.Create("atmos.monstermos_rip_tiles", false, CVar.SERVERONLY);
 
         /// <summary>
         ///     Whether explosive depressurization will cause the grid to gain an impulse.