Players now move slower.

This commit is contained in:
moonheart08 2022-01-08 15:38:30 -06:00
parent 67eaa7bfe6
commit 373bc2d9f8
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ namespace Content.Shared.Movement.Components
[NetworkedComponent, Friend(typeof(MovementSpeedModifierSystem))]
public sealed class MovementSpeedModifierComponent : Component
{
public const float DefaultBaseWalkSpeed = 4.0f;
public const float DefaultBaseSprintSpeed = 7.0f;
public const float DefaultBaseWalkSpeed = 3.0f;
public const float DefaultBaseSprintSpeed = 5.0f;
public override string Name => "MovementSpeedModifier";