Skip to content

Commit

Permalink
Fix physics.maxlinvelocity not being a replicated cvar
Browse files Browse the repository at this point in the history
  • Loading branch information
DrSmugleaf committed Sep 16, 2024
1 parent f03c006 commit ed1e5cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Robust.Shared/CVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1288,7 +1288,7 @@ protected CVars()
/// Default is 35 m/s. Around half a tile per tick at 60 ticks per second.
/// </remarks>
public static readonly CVarDef<float> MaxLinVelocity =
CVarDef.Create("physics.maxlinvelocity", 35f);
CVarDef.Create("physics.maxlinvelocity", 35f, CVar.SERVER | CVar.REPLICATED);

/// <summary>
/// Maximum angular velocity in full rotations per second.
Expand Down

0 comments on commit ed1e5cc

Please sign in to comment.