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