Skip to content

Commit

Permalink
Disable height.modifies_zoom (Simple-Station#564)
Browse files Browse the repository at this point in the history
# Description

Height Sliders modifying zoom was always going to be temporary, and long
term we had planned on phasing it out in favor of allowing Physics to be
the balancing factor against players making their characters small. Now
that we have features such as Space Wind, Mass Contests, Frictionless
Space, and so on, this has come to fruition, and we no longer
necessarily need zoom-adjusting to be a balancing factor. Zoom is cited
as one of the most common complaints about our codebase, players
absolutely seem to not like this, especially since it's not communicated
to them in character creation that their viewmodel is going to be
adjusted.

This PR does not permanently remove the Modifies_Zoom feature, merely
setting it to false by default. Server hosts are still able to re-enable
it in their TOML configs if desired, but by default it should be
disabled.
  • Loading branch information
VMSolidus committed Jul 20, 2024
1 parent da20e7f commit 165aac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Shared/CCVar/CCVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2272,7 +2272,7 @@ public static readonly CVarDef<float>
/// Whether height & width sliders adjust a player's max view distance
/// </summary>
public static readonly CVarDef<bool> HeightAdjustModifiesZoom =
CVarDef.Create("heightadjust.modifies_zoom", true, CVar.SERVERONLY);
CVarDef.Create("heightadjust.modifies_zoom", false, CVar.SERVERONLY);

/// <summary>
/// Enables station goals
Expand Down

0 comments on commit 165aac4

Please sign in to comment.