diff --git a/Content.Server/Construction/Completions/SnapToGrid.cs b/Content.Server/Construction/Completions/SnapToGrid.cs index 7d2c35a872..ec41b13988 100644 --- a/Content.Server/Construction/Completions/SnapToGrid.cs +++ b/Content.Server/Construction/Completions/SnapToGrid.cs @@ -13,7 +13,9 @@ namespace Content.Server.Construction.Completions public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) { var transform = entityManager.GetComponent(uid); - transform.Coordinates = transform.Coordinates.SnapToGrid(entityManager); + + if (!transform.Anchored) + transform.Coordinates = transform.Coordinates.SnapToGrid(entityManager); if (SouthRotation) {