diff --git a/Content.Client/IconSmoothing/IconSmoothComponent.cs b/Content.Client/IconSmoothing/IconSmoothComponent.cs index bf2ca481ba..02c608f53f 100644 --- a/Content.Client/IconSmoothing/IconSmoothComponent.cs +++ b/Content.Client/IconSmoothing/IconSmoothComponent.cs @@ -239,7 +239,8 @@ namespace Content.Client.IconSmoothing cornerNW |= CornerFill.Diagonal; } - switch (Owner.Transform.WorldRotation.GetCardinalDir()) + // Local is fine as we already know it's parented to the grid (due to the way anchoring works). + switch (Owner.Transform.LocalRotation.GetCardinalDir()) { case Direction.North: return (cornerSW, cornerSE, cornerNE, cornerNW);