diff --git a/Content.Server/Shuttles/Components/ShuttleComponent.cs b/Content.Server/Shuttles/Components/ShuttleComponent.cs
index 488f1d3a21b..ac138b50679 100644
--- a/Content.Server/Shuttles/Components/ShuttleComponent.cs
+++ b/Content.Server/Shuttles/Components/ShuttleComponent.cs
@@ -14,7 +14,7 @@ public sealed partial class ShuttleComponent : Component
///
/// Thrust gets multiplied by this value if it's for braking.
///
- public const float BrakeCoefficient = 1.5f;
+ public const float BrakeCoefficient = 0.5f;
///
/// Maximum velocity assuming unupgraded, tier 1 thrusters
@@ -66,9 +66,9 @@ public sealed partial class ShuttleComponent : Component
/// Damping applied to the shuttle's physics component when not in FTL.
///
[DataField("linearDamping"), ViewVariables(VVAccess.ReadWrite)]
- public float LinearDamping = 0.05f;
+ public float LinearDamping = 0.005f;
[DataField("angularDamping"), ViewVariables(VVAccess.ReadWrite)]
- public float AngularDamping = 0.05f;
+ public float AngularDamping = 0.005f;
}
}