Fix shuttle angular velocity direction

This commit is contained in:
metalgearsloth
2021-07-22 22:48:46 +10:00
parent 56bbeb5edd
commit c7e32ff0c7

View File

@@ -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