From 8a6d9145863b6dbc34603246587915b0d2b1ef90 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 27 Jun 2022 14:58:58 +1000 Subject: [PATCH] Drop hyperspace speed (#9216) --- Content.Server/Shuttles/Systems/ShuttleSystem.Hyperspace.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.Hyperspace.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.Hyperspace.cs index 08f244a3f3..d240e93dae 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.Hyperspace.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.Hyperspace.cs @@ -95,7 +95,7 @@ public sealed partial class ShuttleSystem if (TryComp(comp.Owner, out body)) { - body.LinearVelocity = new Vector2(0f, 100f); + body.LinearVelocity = new Vector2(0f, 20f); body.AngularVelocity = 0f; body.LinearDamping = 0f; body.AngularDamping = 0f;