Skip to content

Commit

Permalink
disables space wind and tile ripping cvars (#21847)
Browse files Browse the repository at this point in the history
  • Loading branch information
Flareguy committed Nov 27, 2023
1 parent 89ba82f commit c7f4294
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Content.Shared/CCVar/CCVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ public sealed class CCVars : CVars
/// 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.
Expand Down Expand Up @@ -975,7 +975,7 @@ public sealed class CCVars : CVars
/// 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.
Expand Down

0 comments on commit c7f4294

Please sign in to comment.