diff --git a/Content.Server/GameObjects/Components/RotatableComponent.cs b/Content.Server/GameObjects/Components/RotatableComponent.cs index 5707056e0e..4ff4d86f45 100644 --- a/Content.Server/GameObjects/Components/RotatableComponent.cs +++ b/Content.Server/GameObjects/Components/RotatableComponent.cs @@ -49,7 +49,7 @@ namespace Content.Server.GameObjects.Components protected override void Activate(IEntity user, RotatableComponent component) { - component.TryRotate(user, Angle.FromDegrees(90)); + component.TryRotate(user, Angle.FromDegrees(-90)); } } @@ -70,7 +70,7 @@ namespace Content.Server.GameObjects.Components protected override void Activate(IEntity user, RotatableComponent component) { - component.TryRotate(user, Angle.FromDegrees(-90)); + component.TryRotate(user, Angle.FromDegrees(90)); } }