diff --git a/Content.Server/Pointing/EntitySystems/PointingSystem.cs b/Content.Server/Pointing/EntitySystems/PointingSystem.cs index 2d8453020c..803eb90b67 100644 --- a/Content.Server/Pointing/EntitySystems/PointingSystem.cs +++ b/Content.Server/Pointing/EntitySystems/PointingSystem.cs @@ -119,7 +119,7 @@ namespace Content.Server.Pointing.EntitySystems var diff = mapCoords.Position - player.Transform.MapPosition.Position; if (diff.LengthSquared > 0.01f) { - player.Transform.LocalRotation = new Angle(diff); + player.Transform.WorldRotation = Angle.FromWorldVec(diff); } }