From c7e32ff0c771c8de5cb582fe74a0756fe576a548 Mon Sep 17 00:00:00 2001 From: metalgearsloth Date: Thu, 22 Jul 2021 22:48:46 +1000 Subject: [PATCH] Fix shuttle angular velocity direction --- Content.Server/Physics/Controllers/MoverController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Physics/Controllers/MoverController.cs b/Content.Server/Physics/Controllers/MoverController.cs index cfdcd0a655..b46170bb95 100644 --- a/Content.Server/Physics/Controllers/MoverController.cs +++ b/Content.Server/Physics/Controllers/MoverController.cs @@ -126,7 +126,7 @@ namespace Content.Server.Physics.Controllers physicsComponent.Mass * movement.Y * 10); - physicsComponent.ApplyAngularImpulse(movement.X * angularSpeed); + physicsComponent.ApplyAngularImpulse(-movement.X * angularSpeed); } // TODO WHEN THIS ACTUALLY WORKS