From 1e71643aafab8c298cf29b23841f9ed4849bb3b7 Mon Sep 17 00:00:00 2001
From: Zamin1234 <129673445+Zamin1234@users.noreply.github.com>
Date: Fri, 7 Jun 2024 21:58:00 +0500
Subject: [PATCH] speed shuttle
---
Content.Server/Shuttles/Components/ShuttleComponent.cs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
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;
}
}